// JavaScript Document

startList = function() {
	if (document.all && document.getElementById) {
		
		navRoot = Array();
		navRoot[0] = document.getElementById("nav");
		
		for (var tmpcount=0; tmpcount < navRoot.length; tmpcount++) {
			for (i=0; i<navRoot[tmpcount].childNodes.length; i++) {
				node = navRoot[tmpcount].childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	
	}
}

window.onload=startList;