
topedge = 50;  // location of news box from top of page
leftedge = 0;  // location of news box from left edge
boxheight = 80;  // height of news box
boxwidth = 240;  // width of news box
scrollheight = 30; // total height of all data to be scrolled
//news = document.getElementById('news');

function scrollnews(cliptop) 
{

/*

*/
		newsDiv = news.style;
		newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";
		//newsDiv.pixelLeft = leftedge;
		newsDiv.pixelTop = topedge - cliptop;
		//alert(cliptop);


	cliptop = (cliptop + 1) % (scrollheight + boxheight);
	newsDiv.visibility='visible';

	setTimeout("scrollnews(" + cliptop + ")", 150);
}
function startscoll()
{
    scrollnews(0);
}

addEventSimple(window,'load', startscoll);