// JavaScript Document
$(document).ready(function(){
	
	//Ocultamos capas
	$("#page").hide();
	$("#menu").hide();
	$("#title").hide();
	
	//Efectos concatenados
	$("#menu").slideDown(2000, function(){
		$("#title").fadeIn(2000, function(){
			$("#page").fadeIn(2000);
		});
	});
			
	//Pretty Photo
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
});

function openPopUp($url,$ancho,$alto){
	$.prettyPhoto.open($url+'?iframe=true&width='+$ancho+'&height='+$alto,'','');
}

