// JavaScript Document

startList = function() {
	 if (document.all && document.getElementById) {
		var elementArray = new Array("nav1","nav2","nav3","nav4","nav5","nav6" /* ,"nav7" */);
		for (id = 0; id < elementArray.length; id++ ) {
			var navRoot = document.getElementById(elementArray[id]);
			for (i=0; i<navRoot.childNodes.length; i++) {
				var node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
						}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
						}
					}
				} //for
			} //for
		} //if
	} //startList
window.onload=startList;