
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		navRoot_sub1 = document.getElementById("sub_nav1");
		navRoot_sub2 = document.getElementById("sub_nav2");		
		navRoot_sub3 = document.getElementById("sub_nav3");		
		navRoot_sub4 = document.getElementById("sub_nav4");
		navRoot_sub5 = document.getElementById("sub_nav5");		
		navRoot_sub6 = document.getElementById("sub_nav6");		



		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=this.className.replace(" over", "");
				}
			}
		}
		
		for (i=0; i<navRoot_sub1.childNodes.length; i++) {
			node = navRoot_sub1.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}

		for (i=0; i<navRoot_sub2.childNodes.length; i++) {
			node = navRoot_sub2.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}

		for (i=0; i<navRoot_sub3.childNodes.length; i++) {
			node = navRoot_sub3.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}

		for (i=0; i<navRoot_sub4.childNodes.length; i++) {
			node = navRoot_sub4.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}

		for (i=0; i<navRoot_sub5.childNodes.length; i++) {
			node = navRoot_sub5.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}

		for (i=0; i<navRoot_sub6.childNodes.length; i++) {
			node = navRoot_sub6.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}




		
	}
}
window.onload=startList;
