function mostrar() { 
	$("#pop").fadeIn('slow'); 
} 

$(document).ready(function (){
							
	//Conseguir valores de la img 
   var img_w = $("#pop img").width() + 10; 
   var img_h = $("#pop img").height() + 28; 
    
   //Darle el alto y ancho 
   $("#pop").css('width', img_w + 'px'); 
   $("#pop").css('height', img_h + 'px'); 
    
   //Esconder el popup 
   $("#pop").hide();
    
   //Centra el popup    
   w = 400; 
   h = 100;
   $("#pop").css("right",w + "px"); 
   $("#pop").css("top",h + "px");
   
   //temporizador, para que no aparezca de golpe 
   setTimeout("mostrar()",4000);
   
    //Función para cerrar el popup 
   $("#pop").click(function (){ 
      $(this).fadeOut('slow'); 
   });
   
});