	var marqueewidth	= "501px"
	var marqueeheight	= "28px"
	var marqueespeed	= 2
	var marqueebgcolor	= "#FFFFFF"
	var pauseit			= 1;			//Pause marquee onMousever (0=no. 1=yes)?

	marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
	var copyspeed=marqueespeed
	var pausespeed=(pauseit==0)? copyspeed: 0
	var actualwidth=''
	var cross_marquee, ns_marquee
	
	function populate(){
		cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
		cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
		actualwidth=document.all? iemarquee.offsetWidth : document.getElementById("iemarquee").offsetWidth
		lefttime=setInterval("scrollmarquee()",20)
	}
	window.onload=populate
	
	function scrollmarquee(){
		if (parseInt(cross_marquee.style.left)>(actualwidth*(-1)+8))
			cross_marquee.style.left=parseInt(cross_marquee.style.left)-copyspeed+"px"
		else
			cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
	}
