<!--
var tScroll;
var curPos = 0;
function runTimer() {
curPos = document.body.scrollTop + 3;
window.scroll(0, curPos);
// Start over when end of document is reached.
if (curPos > document.body.scrollHeight -
document.body.clientHeight)
window.scroll(0, 0);
tScroll = window.setTimeout("runTimer();", 300);
}
window.onload = runTimer;
window.onunload = new Function("clearTimeout(tScroll)");
-->
