<!--
var delayS = 30;              //Delay between iterations (fine tuning).
var iteration = '1';            //Set iteration to the number of pixels to move between each delay.
var scrollerBackground = '';   //Set to your image source ie: '../Images/imgSource.jpg' if you 
                              //don't wish to use a background image leave it empty.
															
//Add your messages below. You can input most any html into each mssg ie: <a>,<img/>,<b>,<font>
//You should keep each message to 4 lines of text or less.

///////DO NOT EDIT PASS THIS LINE///////

function move(whichdiv){
	tdiv=eval(whichdiv);
	if (parseInt(tdiv.style.top) < 0 && parseInt(tdiv.style.top) <= -(tdiv.offsetHeight / 2)){
		tdiv.style.top = 0 + "px";
	}else{
		tdiv.style.top = parseInt(tdiv.style.top) - iteration + "px";
	}
	setTimeout("move(tdiv)",delayS);
	return;
}

function startScroll(){
	mainObj = document.getElementById("mainDiv");
	move(mainObj);
}

function pauseScroller(scrSpeed){
	delayS = scrSpeed;
}

if (window.addEventListener){
	window.addEventListener("load", startScroll, false);
}else if (window.attachEvent){
	window.attachEvent("onload", startScroll);
}else if (dom){
	window.onload=startScroll
}
//-->