<!--
i = 0
//original code used the variable "var speed" in lieu of " var originallyspeed"
//but this conflicts with "var speed" in "rainbow text function" for "EXTRAORDINARY" in the head
//CHANGE variable name in 1st & 4th lines below if using "rainbow text" AND "scroll" functions simultaneously!!!
var originallyspeed = 1
function scroll() 
{
i = i + originallyspeed
	var div = document.getElementById("info")
	div.scrollTop = i
//the div.scrollHeight = the actual height (in px) of the div ("info") to loop without delay
//the div.scrollHeight should be < the actual height (in px) to pause before looping
if (i > div.scrollHeight - 75) {i = 0}
//increase the number in the setTimeout("scroll()", ##) to scroll slower; decrease to scroll faster
t1=setTimeout("scroll()",30)
}
function pauseit()
{
	clearTimeout(t1);
}
function resumeit()
{
	scroll();
}
//-->