var speed=20;
move2.innerHTML=move1.innerHTML; 
function Marquee(){ 
	if(move2.offsetWidth-move.scrollLeft<=0) 
		move.scrollLeft-=move1.offsetWidth;
	else{ 
		move.scrollLeft++; 
	} 
} 
var MyMar=setInterval(Marquee,speed); 
move1.onmouseover=function() {clearInterval(MyMar)} 
move1.onmouseout=function() {MyMar=setInterval(Marquee,speed)}