function startList() {
	if (document.all&&document.getElementById) {
		var g,i,navRoot,a;
		a = Array('nav');
		for (x=0; x < a.length; x++) {			
			navRoot	 = document.getElementById(a[x]);
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];	
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					} // end function
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					} // end function
				} // end if
			} // end for
		} // end for
	} // end if
} //end function
