// JavaScript Document
startList = function(){
if (document.all&&document.getElementById) {
	navRoot = document.getElementById("ulMenu");
	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 (y=0; y< node.childNodes.length; y++) {
				subnode = node.childNodes[y];
				if (subnode.nodeName=="UL") {
					
					for (x=0; x< subnode.childNodes.length; x++) {
						subnode2 = subnode.childNodes[x];
						if (subnode2.nodeName=="LI") {

							subnode2.onmouseover=function() {
								this.className+=" over";
							}
							subnode2.onmouseout=function() {
								this.className=this.className.replace(" over", "");
							}
						}
					}
				}
			}
   		}
  	}
 	}
};
window.onload=startList;