 //var dropdown=new TINY.dropdown.init("dropdown", {id:'navigations', active:'menuhover'});
window.onload = function(){
	var speed=20;
	var tab=document.getElementById("product_thumb");
	var tab1=document.getElementById("auto_config");
	var tab2=document.getElementById("auto_config1");
	tab2.innerHTML=tab1.innerHTML;
	function Marquee(){
	if(tab2.offsetWidth-tab.scrollLeft<=0)
	tab.scrollLeft-=tab1.offsetWidth
	else{
	tab.scrollLeft++;
	}
	}
	var MyMar=setInterval(Marquee,speed);
	tab.onmouseover=function() {clearInterval(MyMar)};
	tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};
}









