/**************************************************************
Script made by Martial Boissonneault http://getElementById.com
This script is provided free to the web development community.
**************************************************************/
nn4 = (document.layers);
ie5 = (document.getElementById && document.all);
nn6 = (document.getElementById && !document.all);
ok = (ie5 || nn6)

nStart = nn4?980:400; //where the text starts
nEnd = nn4? 60: -855;  // 1030 where the text finish
nTimeOut = 20;  //the speed of the ticker.
nInc = 1;     //how much px in each step 
nLeft = nStart;

function DoMove(){
nLeft = nLeft - nInc;
if( nLeft < nEnd )
{
nLeft = nStart;
}

if(ok) {
	document.getElementById('ticker').style.left = nLeft;
	}
else {
	document.layers["tickercontainer"].layers["ticker"].left = nLeft;
	}
setTimeout( 'DoMove()', nTimeOut );
}