/*********************
*  滚动内容展示对象  *
*  Hi~AJAX  2006-11  *
*********************/
function gun(height,speed,stopTime,container,content,copy){
   var he=height;
   var sp=speed;
   var st=stopTime;
   copy.innerHTML=content.innerHTML;
   var x=0;

   function Marqueejimo(){
   	   if(copy.offsetHeight-container.scrollTop<=0)
	   		container.scrollTop-=copy.offsetHeight;
	   else{
	   		if(x<=he){
	   			container.scrollTop++;
			}
			if(x>he+st){
				x=0;
			}
			x++;
	   }
   }
   var MyMar=setInterval(Marqueejimo,sp)
   container.onmouseover=function() {clearInterval(MyMar)}
   container.onmouseout=function() {MyMar=setInterval(Marqueejimo,sp)}
}