// funcionalidad añadida para el menú horizontal
startList = function() {
	//if (document.all&&document.getElementById) {
		
		navRoot = document.getElementById("lista_info");
		if (navRoot){
			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", "");
					}
				}
			}
		}
		
		navRoot2 = document.getElementById("lista_juventud");
		if (navRoot2){
			for (i=0; i<navRoot2.childNodes.length; i++) {
				node = navRoot2.childNodes[i];
				
				if (node.nodeName=="LI") { 
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {					
						this.className=this.className.replace("over", "");
					}
				}
			}
		}	
		
		navRoot3 = document.getElementById("lista_metodos");
		if (navRoot3){
			for (i=0; i<navRoot3.childNodes.length; i++) {
				node = navRoot3.childNodes[i];
				
				if (node.nodeName=="LI") { 
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {					
						this.className=this.className.replace("over", "");
					}
				}
			}
		}			
		
	//}
}
window.onload=startList;