//configure tickercontents[] to set the messges you wish be displayed (HTML codes accepted)
var tickercontents=new Array()
tickercontents[0]=<font face="Arial" font color="#FFFFFF"><strong><big>'Up Coming Event!'</font></strong></big>
tickercontents[1]=<font face="Arial" font color="#FFFFFF"><strong><big>'Hot Air Balloon Festival ~~Click Here for More Info~~'<a href="http://www.NKTriders.org/Newsletters/NKT Balloon Festival 2008.pdf">'~~Click Here for More Info~~'</a></font></strong></big>
tickercontents[2]=<font face="Arial" font color="#FFFFFF"><strong><big>'We Need Event Volunteers -- Contact Us For Info'</font></strong></big> 

//configure the below 2 variables to set the width/background color of the ticker
var tickerwidth='80%'
var tickerbgcolor='#B7734B'

//configure the below variable to determine the delay between ticking of messages (in miliseconds
var tickdelay=3000

////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 if (document.all)
tickerie.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"
changetickercontent()
}

if (document.all)
document.write('<div id="tickerie" style="width:'+tickerwidth+'; background-color:'+tickerbgcolor+'"></div>')
window.onload=start_ticking
</script>


<ilayer id="tickernsmain" width=&{tickerwidth}; bgColor=&{tickerbgcolor}; visibility=hide><layer id="tickernssub" width=&{tickerwidth}; left=0 top=0></layer></ilayer>