function FunRule(ID){
	if (document.getElementById(ID).width>135){document.getElementById(ID).width=135;}
	if (document.getElementById(ID).height>90){document.getElementById(ID).height=90;}
}
function $(id) {
	return document.getElementById(id);
}
var speed1=30;
$("myProd2").innerHTML=$("myProd1").innerHTML ;
function Marquee1(){ 
	if($("myProd2").offsetWidth-$("myProd").scrollLeft<=0) 
		$("myProd").scrollLeft-=$("myProd1").offsetWidth ;
	else{ 
		$("myProd").scrollLeft++ ;
	} 
} 
var MyMar1=setInterval(Marquee1,speed1) 
$("myProd").onmouseover=function() {clearInterval(MyMar1)} 
$("myProd").onmouseout=function() {MyMar1=setInterval(Marquee1,speed1)} 