	
	
	function startme(){
		setTimeout("moveme()",15);
		myWidth='-'+document.getElementById("scaScrollingtext1").offsetWidth
		document.getElementById("scaScroller").width=(myWidth*2)
		}
	function moveme(){
		startme();
		myStr=document.getElementById("scaScroller").style.marginLeft
		myStr = myStr.slice(0, -2)
		if (myStr==myWidth){
			document.getElementById("scaScroller").style.marginLeft='-349px'; // '-349px' = 1px less than half the width of #container
		}else{
			document.getElementById("scaScroller").style.marginLeft=myStr-1+'px';
		}
		}
	setTimeout("moveme()",15);