/*
Ticker Tape script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/
//configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted)
var tickercontents=new Array()
/*tickercontents[0]='&nbsp;Jan 15-17 : Virtual Car Show and Sale'
tickercontents[1]='Feb 12-13 : Global Lighting Convention'
tickercontents[2]='March 13-21 : Hypnosummit'
tickercontents[3]='March 20-21 : Sports Employment Fair'
tickercontents[4]='May 8-9 : V-BMSE'
tickercontents[5]='June 5-6 : Holistic Japan'
tickercontents[6]='July 1-31 : PharmSpace09'
tickercontents[7]='July 17-19 : Virtual Car Show and Sale'
tickercontents[8]='Aug 21-23 : Kaplan University Career Fair'
tickercontents[9]='Oct 31-Nov 2 : International Foundries Expo'*/

tickercontents[0]='Expos2 is about to revolutionize the world of virtual expos again with...'
tickercontents[1]='Intuitive navigation'
tickercontents[2]='Share contact information with a click'
tickercontents[3]='Organize literature and contacts better than a physical event '
tickercontents[4]='Network, Share Knowledge, and Learn, all at the same time'
tickercontents[5]='Changing the way you look at virtual events.'
tickercontents[6]='Get more out of your virtual event than you ever thought possible.'
tickercontents[7]='Watch this space for more information.'






//configure the below 2 variables to set the width/background color of the ticker
var tickerwidth='65%' //in "px" or "%"
var tickerbgcolor=''

//configure the below variable to determine the delay between ticking of messages (in miliseconds
var tickdelay=6000

////Do not edit pass this line////////////////

var currentmessage=0

function changetickercontent(){
if (document.layers){
document.tickernsmain.document.tickernssub.document.write(tickercontents[currentmessage])
document.tickernsmain.document.tickernssub.document.close()
}
else
crosstick.innerHTML=tickercontents[currentmessage]

if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}

function start_ticking(){
if (document.layers)
document.tickernsmain.visibility="show"
else
crosstick=document.getElementById? document.getElementById("tickerie") : document.all.tickerie
changetickercontent()
}

if (document.all||document.getElementById)
document.write('<div id="tickerie" style="width:'+tickerwidth+'; background-color:'+tickerbgcolor+'"></div>')
window.onload=start_ticking