
function menu ()
{
	var url = new Array();
	url[0] = "index.html";
	url[1] = "jabones.html";
	url[2] = "bombas_efervescentes.html";
	//url[3] = "sales.html";
	url[4] = "http://jabonesnaturales-laraizcuadrada.blogspot.com";
	url[5] = "form.php";
	url[6] = "enlaces.html";
	url[7] = "index.html";
	url[8] =	"ingles/index.html";
	
	var boton = new Array();
	boton[0] = "Inicio";
	boton[1] = "Jabones";
	boton[2] = "Bombas efervescentes";
	//boton[3] = "Sales";
	boton[4] = "Novedades";
	boton[5] = "Contactar";
	boton[6] = "Enlaces";
	boton[7] = "<img align='middle' src='img/bandera_esp.gif' title='Español'>";
	boton[8] = "<img align='middle' src='img/bandera_ing.gif' title='English'>";
	
	var menu=document.getElementById("menu");
	var texto = "";
	
	for(i=0;i<url.length;i++){
		if(url[i] != undefined)
			texto += "<a class='boton' href='"+url[i]+"'>"+boton[i]+"</a> ";
	}
	
	menu.innerHTML=texto;	
}

function submenu ()
{
	var url = new Array();
	url[0] = "leche_cabra.html";
	url[1] = "uva_mirra.html";
	url[2] = "lavanda.html";
	url[3] = "chocolate_almendras.html";
	url[4] = "avena_leche_miel.html";
	url[5] = "citrico_cedron.html";
	url[6] = "romero.html";
	url[7] = "aloe_hierbabuena.html";
	url[8] =	"glicerina.html";
	url[9] =	"fieltrabon_lufabon.html";
	url[10] = "rosa_mosqueta.html";
	
	var boton = new Array();
	boton[0] = "Leche_cabra";
	boton[1] = "Uva_mirra";
	boton[2] = "Lavanda";
	boton[3] = "Chocolate_almendras";
	boton[4] = "Avena_leche_miel";
	boton[5] = "C&iacute;trico_cedr&oacute;n";
	boton[6] = "Romero";
	boton[7] = "Aloe_hierbabuena";
	boton[8] = "Glicerina";
	boton[9] = "Fieltrab&oacute;n_lufab&oacute;n";
	boton[10] = "Rosa_Mosqueta";
	
	//var submenu=document.getElementById("submenu");
	var texto = "";
	
	for(i=0;i<url.length;i++){
		if(url[i] != undefined)
			texto += "<a class='boton3' href='"+url[i]+"'>"+boton[i]+"</a> ";
	}
	
	//submenu.innerHTML=texto;
	document.getElementById("submenu").innertext=texto;
}

