var srcoll_time=new Array(4);

function srcoll_2008(strobj,strwidth,stri)
{
	//var obj1=document.getElementById(strobj+"_1").style;
	//var obj2=document.getElementById(strobj+"_2").style;
	//obj1.pixelLeft=obj1.pixelLeft-1;
	//obj2.pixelLeft=obj2.pixelLeft-1;
	var obj1=document.getElementById(strobj+"_1");
	obj1.scrollLeft++;
	if((obj1.scrollLeft+obj1.scrollLeft)>obj1.style.pixelWidth || (obj1.scrollLeft+obj1.scrollLeft)==obj1.style.pixelWidth)
	{
		obj1.scrollLeft=0;
		clearTimeout(srcoll_time[stri]);
		srcoll_time[stri]=setTimeout("srcoll_2008('"+strobj+"',"+strwidth+","+stri+")",10);
	}
	else
	{
		if(obj1.scrollLeft%strwidth==0)
		{
		clearTimeout(srcoll_time[stri]);	
		srcoll_time[stri]=setTimeout("srcoll_2008('"+strobj+"',"+strwidth+","+stri+")",10);
		}
		else
		{
		srcoll_time[stri]=setTimeout("srcoll_2008('"+strobj+"',"+strwidth+","+stri+")",10);
		}
	}	
}

function init_div_2008(strobj,strwidth1,strwidth2,stri)
{
	var Tempobj1=document.getElementById(strobj+"_1");
	with(Tempobj1){
		style.scrollLeft=0;
		style.width=strwidth1+strwidth1;
		style.overflowX="hidden";
		style.overflowY="visible";
		noWrap=true;
		onmouseover=new Function("clearTimeout(srcoll_time["+stri+"]);");
		onmouseout=new Function("srcoll_2008('"+strobj+"',"+strwidth2+","+stri+");");
	}
	Tempobj1.innerHTML+=Tempobj1.innerHTML;
	Tempobj1.innerHTML+=Tempobj1.innerHTML;
	srcoll_2008(strobj,strwidth2,stri);
}

//ÃûÆ¬ÐÀÉÍ
init_div_2008("div_Product",3636,202,0);



