// JavaScript Document

startList = function() {
	// if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className="over";
					}
				node.onmouseout=function() {
					this.className="";
				}
				for (k=0;k<node.childNodes.length;k++){
					if (node.childNodes[k].nodeName=="UL"){
						for (z=0; z<node.childNodes[k].childNodes.length; z++) {
							innernode = node.childNodes[k].childNodes[z];
							if (innernode.nodeName=="LI") {
								innernode.onmouseover=function() {
									this.className="over";
									}
								innernode.onmouseout=function() {
									this.className="";
								}
							}
						}
					}
				}
			}
		}
	// }
}

startList();