function allonloads(){
	SBpopulate();
}
/*
Original Javascript code by dynamic drive, modified by SuperCat http://www.ourscripts.net
Cross browser Marquee II-  Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com
Credit MUST stay intact
*/
var SBspeed=1;
var SBiedom=document.all||document.getElementById;
var SBactualheight='';
var SBcross_marquee, SBns_marquee;
if(SBiedom){
	SBtxt = '<div style="position:relative;width:100%;height:'+SBheight+';overflow:hidden" onmouseover="SBspeed=0" onmouseout="SBspeed='+SBspeed+'">' +
			'<div id="SBiemarquee" style="position:absolute;left:0px;top:0px;width:100%;"></div></div>';
}else{
	SBtxt='<ilayer width=100% height='+SBheight+' name="SBns_marquee"><layer name="SBns_marquee2" width=100% height='+SBheight+' left=0 top=0 onmouseover="SBspeed=0" onmouseout="SBspeed='+SBspeed+'"></layer></ilayer>';
}

function SBscroll(){
	if(SBiedom){
		if(parseInt(SBcross_marquee.style.top)>(SBactualheight*(-1)+8)){
			SBcross_marquee.style.top=parseInt(SBcross_marquee.style.top)-SBspeed+"px";
		}else{
			SBcross_marquee.style.top=parseInt(SBheight)+2+"px";
		}
	}
	else{
		if(SBns_marquee.top>(SBactualheight*(-1)+8)){
			SBns_marquee.top-=SBspeed;
		}else{
			SBns_marquee.top=parseInt(SBheight)+8;
		}
	}
}

function SBpopulate(){
	if(SBiedom){
		SBcross_marquee=document.getElementById? document.getElementById("SBiemarquee") : document.all.SBiemarquee;
		SBcross_marquee.style.top=parseInt(SBheight)+8+"px";
		SBcross_marquee.innerHTML=SBcontent;
		SBactualheight=SBcross_marquee.offsetHeight;
	}else{
		SBns_marquee=document.SBns_marquee.document.SBns_marquee2;
		SBns_marquee.top=parseInt(SBheight)+8;
		SBns_marquee.document.write(SBcontent);
		SBns_marquee.document.close();
		SBactualheight=SBns_marquee.document.height;
	}
	this.setInterval("SBscroll()",30);
}
window.onload=allonloads;