function menu(){
	submenu = [];
	for(i=0; i<6; i++) submenu[i] = [];
	textmenu = [];
	for(i=0; i<6; i++) textmenu[i] = [];
	textmenu[0][0] = ["Novo","Abrir","Abrir Como...","Salvar","Salvar Como..."]
	textmenu[0][1] = ["","","","",""];
	textmenu[1][0] = ["Estrutura","Equipe"]
	textmenu[1][1] = ["studio_estrutura.asp","studio_equipe.asp"];
	textmenu[2][0] = ["Metodologia","Benef&iacute;cios","Indica&ccedil;&otilde;es"]
	textmenu[2][1] = ["rolfing_metodologia.asp","rolfing_beneficios.asp","rolfing_indicacoes.asp"];
	textmenu[3][0] = ["Hist&oacute;ria","Metodologia","Benef&iacute;cios","Depoimentos"]
	textmenu[3][1] = ["pilates_historia.asp","pilates_metodologia.asp","pilates_beneficios.asp","pilates_depoimentos.aspx"];
	textmenu[4][0] = ["Forma&ccedil;&atilde;o de Instrutores","Educa&ccedil;&atilde;o Continuada", "Depoimentos"]
	textmenu[4][1] = ["cursos_formacao.asp","cursos_educacaocontinuada.asp", "cursos_depoimentos.aspx"];
	textmenu[5][0] = ["Equipamentos","Acessórios"]
	textmenu[5][1] = ["equipamentos.asp","acessorios.asp"];
	menus = [];
	if(document.getElementById){
		menus[0] = document.getElementById("Layer1");
		menus[1] = document.getElementById("Layer2");
		menus[2] = document.getElementById("Layer3");
		menus[3] = document.getElementById("Layer4");
		menus[4] = document.getElementById("Layer5");
		menus[5] = document.getElementById("Layer6");
		menuinterno = document.getElementById("menu");
		//menu.setAttribute("position","absolute")
		function over(){ this.style.backgroundColor = '#5A75B5'; }
		function out(){ this.style.backgroundColor = '#ffffff'; }
		function show(){ this.style.visibility='visible'; }
		function hide(){ this.style.visibility='hidden'; }
		for(j=0; j<textmenu.length; j++){	
			for (i=0; i<textmenu[j][0].length; i++){
				//alert(textmenu[j][0][i])
				textmenu[j][0][i] = "<a href='"+textmenu[j][1][i]+"' target=''>" + textmenu[j][0][i] + "</a>";
				submenu[j][i] = document.createElement("DIV");
				submenu[j][i].setAttribute("className", "special");
				submenu[j][i].innerHTML = textmenu[j][0][i];
				submenu[j][i].style.padding = "5px";
				submenu[j][i].onmouseover = over;
				submenu[j][i].onmouseout = out;
				menus[j].appendChild(submenu[j][i]);
			}
			menus[j].onmouseover = show;
			menus[j].onmouseout = hide;
		}
		
	}
}