var news_xpos = 0;

function JS_news_scroller() {
	if (document.getElementById) {	
		document.getElementById("newsscroller").style.backgroundPosition = news_xpos + "px 0px";
		news_xpos += 1;
		setTimeout('JS_news_scroller()', 75);
	}
}
