	startList = function() {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("menu");

			/* August 7, 2005
			 * Set the class name of the root element, to include
			 * IE specific CSS hacks
			 */
			navRoot.className="ie";
			doe(navRoot);
		}
	}

	function doe(element) {
		var i;
		for (i=0; i<element.childNodes.length; i++) {
			node = element.childNodes[i];
			var text=text + node.nodeName;
//			alert(node.nodeName);
			if (node.nodeName=="LI") {

				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
			if (node.nodeName=="A") {
				node.onfocus=function() {
					this.className+=" over";
					// this.style.zindex='500';
				}
				node.onblur=function() {
					this.className=this.className.replace(" over", "");
				}
			}
			doe(node);

		}
	}
	addOnLoad(startList);
   //this.onload=startList;
