
var scrollStep = 0;
function scrollAll()
{
	document.getElementById("contentdiv").scrollTop += scrollStep

}
setInterval("scrollAll()",100);

