<!--

/***********************************************
* Cross browser Marquee II-  Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

var delayb4scrollh_2=500 //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)
var marqueespeedh_2=1 //Specify marquee scroll speed (larger is faster 1-10)
var pauseith_2=1 //Pause marquee onMousever (0=no. 1=yes)?

////NO NEED TO EDIT BELOW THIS LINE////////////

var copyspeedh_2=marqueespeedh_2
var pausespeedh_2=(pauseith_2==0)? copyspeedh_2: 0
var actualwidth_2=''
var versoh_2='sx'

function scrollmarqueeh_2(){
if (parseInt(cross_marqueeh_2.style.left)>(actualwidth_2*(-1)+marqueewidth_2) && versoh_2 == 'sx') //if scroller hasn't reached the end of its height
cross_marqueeh_2.style.left=parseInt(cross_marqueeh_2.style.left)-copyspeedh_2+"px"; //move scroller upwards
else //else, reset to original position
{cross_marqueeh_2.style.left=parseInt(cross_marqueeh_2.style.left)+copyspeedh_2+"px";
versoh_2='dx';
if (parseInt(cross_marqueeh_2.style.left)==0) versoh_2='sx';
}
}

function initializemarqueeh_2(){
cross_marqueeh_2=document.getElementById("hmarquee_2")
cross_marqueeh_2.style.left=0
marqueewidth_2=document.getElementById("marqueecontainerh_2").offsetWidth
actualwidth_2=cross_marqueeh_2.offsetWidth //height of marquee content (much of which is hidden from view)
if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
cross_marqueeh_2.style.width=marqueewidth_2+"px"
cross_marqueeh_2.style.overflow="scroll"
return
}
setTimeout('lefttime=setInterval("scrollmarqueeh_2()",30)', delayb4scrollh_2)
}

if (window.addEventListener)
window.addEventListener("load", initializemarqueeh_2, false)
else if (window.attachEvent)
window.attachEvent("onload", initializemarqueeh_2)
else if (document.getElementById)
window.onload=initializemarqueeh_2

//-->