// JavaScript Document

function iniMenu(){
	InicializaMenu();
	try {
		var enlaces = [ "index.php","",
					   		"hotel-stella-jandia-golf/index.php",
					   		"hotel-stella-paradise/index.php",
							"villas-stella-paradise/index.php",
							"apartamentos-stella-jandia/index.php",
							"hotel-stella-jandia/index.php",
							"villas-stella-jandia/index.php",
						"reservas.php",
						"ofertas.php",
						"localizacion.php",
						"management.php",
						"contacto.php"];
	
		var i = 0;
		
		while(i<$$("#ul-menu li").length){
			obj = $$("#ul-menu li")[i];
	
			if(obj.id.split("-")[1].toLowerCase()==sec.toLowerCase()) {
				obj.className = "li-sel";
			} else {
				switch(sec.split("-")[0]){
					case "hoteles":
						$$(".menu-hoteles").className = $("menu-hoteles-"+sec.split("-")[1].toLowerCase()).className = "li-sel";
					break;
				}
			}	
	
			obj.enlace = enlaces[i];
	
			if(obj.enlace != "") {
				obj.onclick = function(e){
					if(this.enlace=="reservas.php") SinReservas();
					else window.location = "/"+document.location.pathname.split('/')[1]+"/"+this.enlace;
				}
			}
			i++;
		}

	} catch(e) {};
}

