<!--

startList = function() {
	//menu option 1
	if (document.all&&document.getElementById) {
		nav1Root = document.getElementById("nav1");
		for (i=0; i<nav1Root.childNodes.length; i++) {
			node = nav1Root.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
	   			}
			}
	  	}
	}
	//menu option 2
	if (document.all&&document.getElementById) {
		nav2Root = document.getElementById("nav2");
		for (i=0; i<nav2Root.childNodes.length; i++) {
			node = nav2Root.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
	   			}
			}
	  	}
	}
	//menu option 3
	if (document.all&&document.getElementById) {
		nav3Root = document.getElementById("nav3");
		for (i=0; i<nav3Root.childNodes.length; i++) {
			node = nav3Root.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
	   			}
			}
	  	}
	}
	//menu option 4
	if (document.all&&document.getElementById) {
		nav4Root = document.getElementById("nav4");
		for (i=0; i<nav4Root.childNodes.length; i++) {
			node = nav4Root.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
	   			}
			}
	  	}
	}
}

window.onload=startList;

-->