function allonloadsFS(){
FSpopulate();


}

var FSspeed=1;
var FSiedom=document.all||document.getElementById;
var FSactualheight='';
var FScross_marquee, FSns_marquee;
if(FSiedom){
	FStxt='<div style="position:relative;width:100%;height:'+FSheight+';overflow:hidden" onmouseover="FSspeed=0" onmouseout="FSspeed=1"><div id="FSiemarquee" style="position:absolute;left:0px;top:0px;width:100%;"></div></div>';
}else{
	FStxt='<ilayer width=100% height='+FSheight+' name="FSns_marquee"><layer name="FSns_marquee2" width=100% height='+FSheight+' left=0 top=0 onmouseover="FSspeed=0" onmouseout="FSspeed=1"></layer></ilayer>';
}
function FSscroll(){
	if(FSiedom){
		if(parseInt(FScross_marquee.style.top)>(FSactualheight*(-1)+2)){
			FScross_marquee.style.top=parseInt(FScross_marquee.style.top)-FSspeed+"px";
		}else{
			FScross_marquee.style.top=parseInt(FSheight)+2+"px";
		}
	}
	else{
		if(FSns_marquee.top>(FSactualheight*(-1)+2)){
			FSns_marquee.top-=FSspeed;
		}else{
			FSns_marquee.top=parseInt(FSheight)+2;
		}
	}
}

function FSpopulate(){
	if(FSiedom){
		FScross_marquee=document.getElementById? document.getElementById("FSiemarquee") : document.all.FSiemarquee;
		FScross_marquee.style.top=parseInt(FSheight)+8+"px";
		FScross_marquee.innerHTML=FScontent;
		FSactualheight=FScross_marquee.offsetHeight;
	}else{
		FSns_marquee=document.FSns_marquee.document.FSns_marquee2;
		FSns_marquee.top=parseInt(FSheight)+8;
		FSns_marquee.document.write(FScontent);
		FSns_marquee.document.close();
		FSactualheight=FSns_marquee.document.height;
	}
	this.setInterval("FSscroll()",50);
}


//window.onload=allonloadsFS;
if(window.addEventListener)
    window.addEventListener("load",allonloadsFS,false);
else if (window.attachEvent)
    window.attachEvent("onload", allonloadsFS)