var delayb4scroll=2000 //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)
var marqueespeed=2 //Specify marquee scroll speed (larger is faster 1-10)
var pauseit=1 //Pause marquee onMousever (0=no. 1=yes)?

////NO NEED TO EDIT BELOW THIS LINE////////////

var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var actualheight=''

function scrollmarquee(){
if (parseInt(cross_marquee.style.top)&amp;gt;(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+&amp;quot;px&amp;quot;
else
cross_marquee.style.top=parseInt(marqueeheight)+8+&amp;quot;px&amp;quot;
}

function initializemarquee(){
cross_marquee=document.getElementById(&amp;quot;vmarquee&amp;quot;)
cross_marquee.style.top=0
marqueeheight=document.getElementById(&amp;quot;marqueecontainer&amp;quot;).offsetHeight
actualheight=cross_marquee.offsetHeight
if (window.opera || navigator.userAgent.indexOf(&amp;quot;Netscape/7&amp;quot;)!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
cross_marquee.style.height=marqueeheight+&amp;quot;px&amp;quot;
cross_marquee.style.overflow=&amp;quot;scroll&amp;quot;
return
}
setTimeout('lefttime=setInterval(&amp;quot;scrollmarquee()&amp;quot;,30)', delayb4scroll)
}

if (window.addEventListener)
window.addEventListener(&amp;quot;load&amp;quot;, initializemarquee, false)
else if (window.attachEvent)
window.attachEvent(&amp;quot;onload&amp;quot;, initializemarquee)
else if (document.getElementById)
window.onload=initializemarquee
