/* EXTENDING MENU -> */

function startList() {
	if (document.getElementById && !window.opera ) {
		navRoot = document.getElementById("nav-1");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node0 = navRoot.childNodes[i];
			if (node0.nodeName=="LI") { 
				node0.onmouseover=function() { this.className+=" over"; }
				node0.onmouseout=function() { this.className=""; }
				for (j=0; j<node0.childNodes.length; j++) {
					node1 = node0.childNodes[j];
					if (node1.nodeName=="UL") {
						for (k=0; k<node1.childNodes.length; k++) {
							node2 = node1.childNodes[k];
							if (node2.nodeName=="LI") { 
								node2.onmouseover=function() { this.className+=" over";  this.parentNode.parentNode.className+=" overChild"; }
								node2.onmouseout=function() { this.className=""; this.parentNode.parentNode.className=""; }
							}
						}
					}
				}
			}
		}
	}
}

window.onload=startList;

/* <- EXTENDING MENU */