// JavaScript Document
var speed=20 ;   
	mhmove2.innerHTML=mhmove1.innerHTML; 
	function Marquee3(){ 
		if(mhmove2.offsetWidth-mhmove.scrollLeft<=0) 
			mhmove.scrollLeft-=mhmove1.offsetWidth;
		else{ 
			mhmove.scrollLeft++; 
		} 
	} 
	function Marquee4(){ 
		if(mhmove2.offsetHeight-mhmove.scrollTop<=0) 
			mhmove.scrollTop-=mhmove1.offsetHeight; 
		else{ 
			mhmove.scrollTop++;
		} 
	}
	//向左滚动调用Marquee3，向上滚动调用Marquee4，下面两处都得修改
	var MyMar2=setInterval(Marquee4,speed); 
	mhmove.onmouseover=function() {clearInterval(MyMar2)} 
	mhmove.onmouseout=function() {MyMar2=setInterval(Marquee4,speed)}