﻿// Controls the scrolling behavior of the news & events
// on the home page

i = 0
var speed = 1
function scroll() 
{
	i = i + speed
	var div = document.getElementById("hpEventScroll")
	div.scrollTop = i
	if (i > div.scrollHeight - 75) {i = 0}
	t1=setTimeout("scroll()",100)
}
