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