//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=6
//Specify the marquee contents
var marqueecontents='<font face="Arial" color="#EFEFE7"><strong>'+GetNewScrollData()+'</strong></font>'
if (document.all)
document.write('<marquee scrollAmount='+speed+' style="width:450">'+marqueecontents+'</marquee>')
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()",25)
}
else{
document.cmarquee01.document.cmarquee02.left=450
scrollit()
}
}
window.onload=intializemarquee