// JavaScript Document
function getElementToShow(namePage){
	$(document).ready(function(){
		$("#loadPage").show();
		//LIMPIAMOS
		$("#contenidoPag").css("filter","alpha(opacity=90)");
		//$("#contenidoPag").hide();	
		$("#loadHtml").empty();		
		//CARGAMOS EL NUEVO CONTENIDO
		$("#loadHtml").load(namePage+".html");
		$("#contenidoPag").css("filter","alpha(opacity=90)");
		//$("#contenidoPag").slideUp("slow").show("slow");		
		//$("#contenidoPag").animate({
//								   		
//										width: 'show',
//										heigth: 'show',
//										opacity: 'show'},'slow');
		$("#contenidoPag").slideDown("slow").show("slow");		
	});
}

//CARGAMOS HOME
function loadHome(){
	$(document).ready(function(){
		$("#loadPage").show();
		$("#contenidoPag").css("filter","alpha(opacity=90)");
		$("#contenidoPag").fadeIn("slow").show("slow");		
		$("#loadHtml").show();
		$("#loadHtml").load("artegoticotehuelchepop.html");
	});
}

function loadBio(){
	$(document).ready(function(){							   
		$("#contenidoPag").css("filter","alpha(opacity=90)");
		$("#contenidoPag").slideUp("slow").show("slow");		
		$("#loadHtml").show();
		$("#loadHtml").load("biografiafede.html");
	});
}

$(document).ready(function(){
	$("#autor").css("cursor","pointer").click(function(){
		window.location = "index.html";
   });
});


