//Specify the marquee's width (in pixels)
var marqueewidth="100%";
//Specify the marquee's height
var marqueeheight="255px";
if (typeof marqueespeed=="undefined") {
	var marqueespeed=3;
}
pauseit=1;

var marqueecontent="";
// Begin scroller logic
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 actualheight=0;
var cross_marquee1, cross_marquee2;

function populate() {
	cross_marquee1=document.getElementById("iemarquee1");
	cross_marquee2=document.getElementById("iemarquee2");
	cross_marquee1.innerHTML=marqueecontent;
	cross_marquee2.innerHTML=marqueecontent;
	actualheight=cross_marquee1.offsetHeight;
	// Move the text offscreen
	cross_marquee1.style.top=marqueeheight;
	lefttime=setInterval("scrollMarquee()",60)
}
window.onload=populate;

function scrollMarquee(){
	// Recalculate height every time (browser may have resized)
	actualheight=cross_marquee1.offsetHeight;
	cross_marquee1.style.top=parseInt(cross_marquee1.style.top)-copyspeed+"px";
	cross_marquee2.style.top=parseInt(cross_marquee1.style.top)-copyspeed+"px";
	if (parseInt(cross_marquee1.style.top)<=(actualheight*(-1))) {
		cross_marquee1.style.top="0px";
	}
}