var conteneur, news, oMrunning,
	oMInterv =        100,     //interval between increments
	oMStep =          5,      //number of pixels to move between increments
	oMDirection =     'left'; //'left' for LTR text, 'right' for RTL text

function doDMarquee() 
{
	conteneur = document.getElementById('conteneur_news');
	news = document.getElementById('news');
		
	news.style.cssText += ';white-space:nowrap;';
	news.style.whiteSpace = 'nowrap';
	conteneur.style.height = conteneur.offsetHeight + 'px';
	conteneur.style.overflow = 'hidden';
	conteneur.style.position = 'relative';
	news.style.position = 'absolute';
	news.style.top = '0px';
	news.style[oMDirection] = conteneur.offsetWidth + 'px';
	news.style.visibility = 'visible';
	
	oMrunning = setInterval('aniMarquee()',oMInterv);
}

function aniMarquee() 
{
	var oPos;
	oPos = parseInt(news.style[oMDirection]);
	if( oPos <= -1 * news.offsetWidth ) 
	{
		news.style[oMDirection] = conteneur.offsetWidth + 'px';
	} else 
	{
		news.style[oMDirection] = ( oPos - oMStep ) + 'px';
	}
}

$(document).ready(function () {
	doDMarquee();
});