<!--//--><![CDATA[//><!--
startList = function() {

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("menu0");
//		navRoot = navRoot01.childNodes;
	//		alert(navRoot);
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			//alert(node.nodeName);
			if (node.nodeName=="LI") {

					for (u=0; u<node.childNodes.length; u++) {
						node2 = node.childNodes[u];	

						if (node2.nodeName=="UL") {						
							for (n=0; n<node2.childNodes.length; n++) {
								node3 = node2.childNodes[n];	
									if (node3.nodeName=="LI") {							
										node3.onmouseover=function() {
										this.className+=" on";
										}
										node3.onmouseout=function() {
										this.className=this.className.replace(" on", "");
										}				
									}
							}
						}
					}
				node.onmouseover=function() {
					this.className+=" over";
			
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
//window.onload=startList;

//--><!]]>
