$(document).ready(function() {
 
    $("html").css("display", "none");
    $("html").fadeIn(2000);
 
	$("a.transicion").click(function(event){
		event.preventDefault();
		linkDestino = this.href;
		$("body").fadeOut(1000, redireccionarPag);		
	});
 
	function redireccionarPag() {
		window.location = linkDestino;
	}
 
});
