
function ScrollingNews(scrollingId)
{
	var t = setInterval(myfunc, 5000);
	var d = document.getElementById(scrollingId);
	function myfunc()
	{
		var o=d.firstChild;
		d.removeChild(o);
		d.appendChild(o);
	}
	d.onmouseover = function(){ clearInterval(t); }
	d.onmouseout = function() { t = setInterval(myfunc, 5000); }
}
try
{
	ScrollingNews("newscroll");
} catch(e) {}