var menu_actual = 0;
var menuArray = new Array("Inicio","La empresa","Contacto","10º Aniversario","Nuestros servicios", "Zona de clientes", "Publicaciones Infoadex");
var subMenuArray1 = new Array();
var subMenuArray2 = new Array();
var subMenuArray3 = new Array();
var subMenuArray4 = new Array();
var subMenuArray5 = new Array("Servicios cuantitativos","Servicios cualitativos","Estudios InfoAdex", "Otros servicios");
var subMenuArray6 = new Array("InfoXXI","Mosaico_Premium");
var subMenuArray7 = new Array("Infoadex informa","Estudios InfoAdex","Dossier de prensa","Glosario Adex","Avance inversiones");
var subMenuArray = new Array(subMenuArray1,subMenuArray2,subMenuArray3,subMenuArray4,subMenuArray5,subMenuArray6,subMenuArray7);
function hideMenu(){
		if(menu_actual > 0){
					 var miLayer = document.getElementById('submenu'+menu_actual);
					 miLayer.innerHTML='';
					 menu_actual = 0;
		}//fin if
		//showDefaultMenu();
}//fin hideMenu

function showDefaultMenu(){
		var miLayer = document.getElementById('menu');
		var htmlCode = '';
		htmlCode += "<table border='0' summary='' cellpadding='0' cellspacing='0'>";
		for(var i = 0; i < menuArray.length; i++) {
		
						if(i == 3) continue;
						htmlCode += "<tr abgcolor='#cccccc'>";
						//htmlCode += "<td valign='top' >";
						
						if(i == 0) htmlCode += "<td valign='top' ><img src='imgs/esquina_sup_izq_gris.gif'>";
						else if(i == (menuArray.length-1))htmlCode += "<td valign='top' ><img src='imgs/esquina_inf_izq_gris.gif'>";
						else htmlCode += "<td valign='top' bgcolor='#cccccc'>&nbsp;";
						htmlCode += "</td>";
						
						htmlCode += "<td class='menu_vertical11'  bgcolor='#cccccc'>";
						htmlCode += "<a href='#' onmouseover='document.punto"+i+".src=\"imgs/punto_rojo3.gif\";hideMenu();";
						if(subMenuArray[i].length > 0 ) htmlCode += "showSubMenu("+(i+1)+");";
						htmlCode += "' onmouseout='document.punto"+i+".src=\"imgs/punto_rojo.gif\"' onclick='requestLink("+((i+1)*100)+");'>";
						htmlCode += "<img name='punto"+i+"' src='imgs/punto_rojo.gif' border='0' align='middle'>";
						htmlCode += menuArray[i];
						htmlCode += "</a>";
						htmlCode += "</td>";
						
						//htmlCode += "<td valign='top' >";
						//htmlCode += "<div id='submenu"+(i+1)+"' class='menu_vertical10' style='z-index=1;height: 250px; width: 190px;position: absolute;'>&nbsp;</div>";
						if(i == 0) htmlCode += "<td valign='top' ><div id='submenu"+(i+1)+"' class='menu_vertical10' style='z-index=1;position: absolute;'>&nbsp;</div><img src='imgs/esquina_sup_der_gris.gif'>";
						else if(i == (menuArray.length-1))htmlCode += "<td valign='top' ><div id='submenu"+(i+1)+"' class='menu_vertical10' style='z-index=1;position: absolute;'>&nbsp;</div><img src='imgs/esquina_inf_der_gris.gif'>";
						else htmlCode += "<td valign='top' bgcolor='#cccccc'><div id='submenu"+(i+1)+"' class='menu_vertical10' style='z-index=1;position: absolute;'>&nbsp;</div>&nbsp;";
						htmlCode += "</td>";
						
						htmlCode += "</tr>";
		}//fin for
		htmlCode += "</table>";
		miLayer.innerHTML=htmlCode;
}//fin showDefaultMenu

function showSubMenu(menu_id) {

		menu_actual = menu_id;
		var miLayer = document.getElementById('submenu'+menu_id);
		var htmlCode = '';
		
		htmlCode += "<table border='0' summary='' cellpadding='0' cellspacing='0' >";
		for(var i = 0; i < subMenuArray[menu_id-1].length; i++){
						htmlCode += "<tr abgcolor='#cccccc'>";
						//htmlCode += "<td valign='top' >";
						/*if(i == 0) htmlCode += "<img src='imgs/esquina_sup_izq_gris.gif'>";
						else*/ if(i == (subMenuArray[menu_id-1].length-1))htmlCode += "<td valign='top' ><img src='imgs/esquina_inf_izq_gris.gif'>";
						else htmlCode += "<td valign='top' bgcolor='#cccccc'>&nbsp;";
						htmlCode += "</td>";
						
						htmlCode += "<td class='menu_vertical10' bgcolor='#cccccc'>";
						htmlCode += "<a href='#' onmouseover='document.punto"+menu_id+i+".src=\"imgs/punto_rojo3.gif\"' onmouseout='document.punto"+menu_id+i+".src=\"imgs/punto_rojo.gif\"' onclick='/*alert("+((menu_id*100)+(i+1)*10)+")*/;requestLink("+ ((menu_id*100)+(i+1)*10) +");'>";
						htmlCode += "<img name='punto"+menu_id+i+"' src='imgs/punto_rojo.gif' border='0' align='middle'>";
						htmlCode += subMenuArray[menu_id-1][i];
						htmlCode += "</a>";
						htmlCode += "</td>";
						
						//htmlCode += "<td valign='top' >";
						if(i == 0) htmlCode += "<td valign='top' ><img src='imgs/esquina_sup_der_gris.gif'>";
						else if(i == (subMenuArray[menu_id-1].length-1))htmlCode += "<td valign='top' ><img src='imgs/esquina_inf_der_gris.gif'>";
						else htmlCode += "<td valign='top' bgcolor='#cccccc'>&nbsp;";
						htmlCode += "</td>";
						
						htmlCode += "</tr>";
		}//fin for
		htmlCode += "</table>";
		miLayer.innerHTML=htmlCode;
}//fin showData