﻿/*Esta funcion muestra el menú al hacer clic sobre un ítem*/
function cargaMenu(nombre) {
	
	var displayActual = document.getElementById(nombre).style.display;
	ocultarTodosMenu();	
		
	if (displayActual=="block")
		document.getElementById(nombre).style.display="none";
	else
		document.getElementById(nombre).style.display="block";
	return false;	
}


function ocultarTodosMenu() {
	document.getElementById("menu1").style.display="none";
	document.getElementById("menu2").style.display="none";
	document.getElementById("menu3").style.display="none";
	document.getElementById("menu4").style.display="none";
	document.getElementById("menu5").style.display="none";
	document.getElementById("menu6").style.display="none";
	document.getElementById("menu7").style.display="none";

}

function menuActivo(nombre,nombreSeccion,nombreSubSeccion,nombreItemSubSeccion) {
	ocultarTodosMenu();	
	if(nombre != 'menu0'){
	    document.getElementById(nombre).style.display="block";
	    nombreSeccion = replace(nombreSeccion, "$", "_");
	    document.getElementById(nombreSeccion).style.backgroundImage="url('http://www.hooping.net/images/menu_link_over.jpg')";
	    nombreSubSeccion = replace(nombreSubSeccion, "$", "_");
	    
	    if (nombreSubSeccion !='')
	    {
		    document.getElementById(nombreSubSeccion).style.backgroundImage="url('images/submenu_link_over.jpg')";	
		    document.getElementById(nombreSubSeccion).style.fontWeight="bold";
		    document.getElementById(nombreSubSeccion).style.color="#EA5122";
	    }	
    		
	    if (nombreItemSubSeccion != '')	
		    document.getElementById(nombreItemSubSeccion).style.color="#EA5122";
	}
	return false;	
}

function replace(texto,s1,s2){
	return texto.split(s1).join(s2);
}
