// 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>Click the spinning CD icon to the right of a song title to hear a short demo.  An MP3 player is required.        Get a <span class="emphMarquee">FREE MP3 PLAYER</span> on our <a href="http://www.confettialloccasionweddingband.com/confetti_demos.htm">Song Demos page</a>!!!</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
