/*
 *menu para http://egb.com.pe/
 * Copyright (c) 2008 Eder Zuņiga
 */
 
oculta_submenu_header = function() {
	var allPageTags = new Array();
	//Populate the array with all the page tags  
	var allPageTags=document.getElementsByTagName("*");  
	for (i=0; i<allPageTags.length; i++) {  
		//Pick out the tags with our class name  
		if (allPageTags[i].className=='click_menu') {  
			//Manipulate this in whatever way you want  
			allPageTags[i].style.visibility='hidden';
		}
	}
};

control_hover = function(id_sub) {
	var activo =document.getElementById("menu"+id_sub);
	var activo2 =document.getElementById("menu_desp_"+id_sub);		
	activo.style.background="#B3B3B3";
	activo2.style.color="#0086f4";
};

llamada_submenu = function(id_sub) {
	if(id_sub==2 || id_sub==7 || id_sub==8){
		control_hover(id_sub);
	}else{
		control_vinculos(id_sub,true);
		control_hover(id_sub);
	}
	
};

muestra_submenu_header = function() {
	var allPageTags = new Array();
	//Populate the array with all the page tags  
	var allPageTags=document.getElementsByTagName("*");  
	for (i=0; i<allPageTags.length; i++) {  
		//Pick out the tags with our class name  
		if (allPageTags[i].className=='click_menu') {  
			//Manipulate this in whatever way you want  
			allPageTags[i].style.visibility='visible';
		}
	}
};
var capa=0; 
var id_anterior=0; 
control_vinculos = function(id,submenus) {	
	llamada=id;
	if(submenus==true){		
		if(id_anterior==id){
			oculta_submenu_header();
			id_anterior=0;
		}
		else{
			capa+=1;
			var myEls = document.getElementById('menus_desp_'+id);
			muestra_submenu_header();			
			myEls.style.zIndex=capa;
			id_anterior=id;
		}
		
	}else{
		oculta_submenu_header();
		id_anterior=0;
	}
}


    