// JavaScript Document

function scrollWindow()
{
	window.scrollBy(0,1);
}

function initScroll()
{
	setInterval("scrollWindow()", 50);
}
