var innermarqueewidth="600px";
var marqueespeed=2;
var pauseit=1;
var marqueewidth=689;

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 iedom=document.all||document.getElementById;
var actualwidth='';
var cross_marquee;

function populate(){
	cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee;
	//cross_marquee.style.left=parseInt(innermarqueewidth)+8+"px";
	actualwidth=cross_marquee.offsetWidth;
	
	setTimeout('lefttime=setInterval("scrollmarquee()",20)',1000);
}
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";
	}
}