var tPos  = 0;
var tGo;
function startt()
{
	tRepeat     =2;
	IE  = document.all&&!window.opera;
	DOM = document.getElementById&&!IE;
	if(DOM||IE)
	{
		tObj = IE ? document.all.ticker : document.getElementById('ticker');
		
		tGo=setInterval('DM_ticken()',20);
	}
}
function DM_ticken()
{
	tOffset = tObj.offsetWidth/tRepeat;
	if(Math.abs(tPos) > tOffset)
	{
		tPos=0;
	}
	tObj.style.left=tPos+'px';
	tPos=parseInt(tPos)-1;
}

