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

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

var copyspeedtwo=marqueespeedtwo
var pausespeedtwo=(pauseittwo==0)? copyspeedtwo: 0
var actualheighttwo=''

function scrollmarqueetwo(){
if (parseInt(cross_marqueetwo.style.top)>(actualheighttwo*(-1)+8))
cross_marqueetwo.style.top=parseInt(cross_marqueetwo.style.top)-copyspeedtwo+"px"
else
cross_marqueetwo.style.top=parseInt(marqueeheight)+8+"px"
}

function initializemarqueetwo(){
cross_marqueetwo=document.getElementById("vmarqueetwo")
cross_marqueetwo.style.top=0
marqueeheight=document.getElementById("marqueecontainertwo").offsetHeight
actualheighttwo=cross_marqueetwo.offsetHeight
if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
cross_marqueetwo.style.height=marqueeheight+"px"
cross_marqueetwo.style.overflow="scroll"
return
}
setTimeout('lefttime=setInterval("scrollmarqueetwo()",30)', delayb4scrolltwo)
}

if (window.addEventListener)
window.addEventListener("load", initializemarqueetwo, false)
else if (window.attachEvent)
window.attachEvent("onload", initializemarqueetwo)
else if (document.getElementById)
window.onload=initializemarqueetwo
