// Script by Billy Pete (http://members.xoom.com/billypete/)
// Idea based on scroller found at http://dynamicdrive.com -->

//Specify the marquee's scroll speed (larger is faster)
var speed=5
//Specify the marquee contents
var marqueecontents='<font face="Helvetica" color="#0000ff" size="2"><strong>Important Note: The January meeting will be held from Noon until 3PM this month due to the Bear's playoff game!</strong></font>'

iens6=document.all || document.getElementById

if (iens6)
document.write('<center><marquee scrollAmount='+speed+' width=670>'+marqueecontents+'</marquee></center>')

function intializemarquee(){
if (document.layers){
document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>')
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.width
scrollit()
}
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=670
scrollit()
}
}

window.onload=intializemarquee
