$(document).ready(function(){
    
	//Esconder el popup 
	$("#pop").hide();
	
	//Consigue valores de la ventana del navegador 
	var w = $(this).width(); 
	var wd =$("#pop").width();
	
	//Centra el popup    
	w = (w/2) - (276/2); 
	$("#pop").css("left",w + "px"); 
	$("#pop").css("top",100 + "px");
	
	//temporizador, para que no aparezca de golpe 
	setTimeout("$('#pop').fadeIn('slow')",500);
	
	//Función para cerrar el popup 
	$("#pop").click(function (){ 
		$(this).fadeOut('slow'); 
	});
});
