function mostrar() {
$("#pop").fadeIn('slow');
} //checkHover

$(document).ready(function (){

//Conseguir valores de la img osea el fondo opaco del popup
var img_w = 343;
var img_h = 445;

//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();

//Centra el popup
w = (w/6) - (img_w/2);
h = (h/3.9) - (img_h/2);
$("#pop").css("left",w + "px");
$("#pop").css("top",h + "px");

//temporizador, para que no aparezca de golpe
setTimeout("mostrar()",1500);

//Función para cerrar el popup
$("#pop").click(function (){
$(this).fadeOut('slow');
$("#cerrar").fadeOut('slow');
});

});
