/**drop down menu for IE**/
startList = function() {
	if(document.all && document.getElementById) {
		menuRoot = document.getElementById("main-menu");
		
		for(i = 0; i < menuRoot.childNodes.length; i++) {
			node = menuRoot.childNodes[i];
			
			if(node.nodeName == "LI") {
				node.onmouseover = function() {
					this.className += " over";	
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}
	}
}

/**marqee scrolling text**/
var id;
var msg = "                         Thank you to our Patron's NL Tucker & Associates & all our sponsors throughout the year.                         ";

function marqeeScroll() {
	var lchar;
	lchar = msg.substring(0,1); 
	msg = msg + lchar;
	msg = msg.substring(1,msg.length);
	document.getElementById("promotion").value = msg.substring(0,120);
	//document.scrolltext.promotion.value = msg.substring(0,80);
	//document.getElementById("marqee").innerHTML = msg.substring(0,200);

	// call ourselves again after a certain interval
	id = setTimeout("marqeeScroll()",200);
}

window.onload = function() {
	startList();
	marqeeScroll();
}