menuOver = function() {
	if (document.all&&document.getElementById) {
		menujs = document.getElementById("iMenuList");
		for (i=0; i<menujs.childNodes.length; i++) {
			nodo = menujs.childNodes[i];
			if (nodo.nodeName=="li"||nodo.nodeName=="LI") {
				nodo.onmouseover=function() {
					this.className+=" over";
					}
				nodo.onmouseout=function() {this.className=this.className.replace(" over", "");}
			}
		}
	}
}