
function Mostrar(elemento)
{
	var elemento_a = document.getElementById(elemento);
	if (elemento_a.style.display == "none") 
		{ 
		//Effect.toggle(elemento, "slide", {duration: 0.4});
		Element.show(elemento_a);
		//new Effect.BlindDown(elemento_a);
		}
}

function Esconder(elemento)
{
var elemento_a = document.getElementById(elemento);
Element.hide(elemento_a);
//new Effect.BlindUp(elemento_a);
}

function CambiarPagina(nombre, idioma)
{
	//alert("PAGINA: "+nombre + " IDIOMA:"+idioma);
	
	
	//ESCONDER TODOS LOS FOOTER
	
	var elemento = document.getElementById("div_footer_intro");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("div_footer_hotel");
	elemento.style.display = "none";
		
	var elemento = document.getElementById("div_footer_fotos");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("div_footer_naturaleza");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("div_footer_contacto");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("div_footer_reservas");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("div_footer_yagan");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("div_footer_isla");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("div_footer_programas");
	elemento.style.display = "none";
		
	var elemento = document.getElementById("div_footer_circuitos");
	elemento.style.display = "none";
	
	//ESCONDER TODOS LOS TITULOS
	
	var elemento = document.getElementById("titulo_hotel");
	elemento.style.display = "none";
		
	var elemento = document.getElementById("titulo_fotos");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("titulo_naturaleza");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("titulo_contacto");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("titulo_reservas");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("titulo_yagan");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("titulo_isla");
	elemento.style.display = "none";
	
	var elemento = document.getElementById("titulo_programas");
	elemento.style.display = "none";
		
	var elemento = document.getElementById("titulo_circuitos");
	elemento.style.display = "none";
	
	
	// MOSTRAR TITULO CORRESPONDIENTE
	if (nombre != "intro")
	{
	var id_titulo = "titulo_"+nombre;
	Effect.Appear(id_titulo, {duration: 0.5});
	}

	// MOSTRAR FOOTER CORRESPONDIENTE
	var id_footer = "div_footer_"+nombre;
	Effect.Appear(id_footer, {duration: 0.5});
	
		
}


function MostrarImagen(archivo, imagen)
{
document[imagen].src=archivo;
}