// JavaScript Document

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("side");
		//alert ( navRoot.childNodes.length );
		for (i=0; i<navRoot.childNodes.length; i++) {
			nodeGlobal = navRoot.childNodes[i];
			if ( nodeGlobal.nodeName == "UL" )
			{
				for (j=0; j<nodeGlobal.childNodes.length; j++) {
					node = nodeGlobal.childNodes[j];
					if (node.nodeName=="LI") {
						//alert(node.nodeName);
						node.onmouseover=function() {
							this.className+=" over";
					  	}
					  	node.onmouseout=function() {
					  		this.className=this.className.replace(" over", "");
					  	}
					}
				}	
					
			}
		}	 
	 }
}

window.onload=startList;
