function mostrar() { 
	$('#window').fadeIn('fast');
	$("#pop").fadeIn('slow'); 
} //checkHover

$(document).ready(function (){
	
	//Conseguir valores de la img
	var img_w = $("#pop img").width() + 3;
	var img_h = $("#pop img").height() + 18;
	
	//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/2) - (img_w/2);
	h = (h/2) - (img_h/2);
	$("#pop").css("left",w + "px");
	$("#pop").css("top",h + "px");
	
	//temporizador, para que no aparezca de golpe
	setTimeout("mostrar()",250);
	
	//Función para cerrar el popup
	$("#pop").click(function (){ 
		$('#window').fadeOut('fast');
		$(this).fadeOut('slow');
	});

});

function cerrar() {
	$('#window').fadeOut('fast');
	$("#pop").fadeOut('slow');  
} //checkHover 
$(document).ready(function (){ 
   //Conseguir valores de la img  
   var img_w = $("#pop img").width(750) + 10;  
   var img_h = $("#pop img").height(525) + 28;  
     
   //Darle el alto y ancho  
   $("#pop").css('width', img_w + 'px');  
   $("#pop").css('height', img_h + 'px');  
 
    //Consigue valores de la ventana del navegador  
   var w = $(this).width(750);  
   var h = $(this).height(525);  
     
   //Centra el popup     
   w = (w/2) - (img_w/2);  
   h = (h/2) - (img_h/2);  
   $("#pop").css("left",w + "px");  
   $("#pop").css("top",h + "px"); 
   //temporizador, para que no aparezca de golpe  
   setTimeout("cerrar()",25800); 
   //Función para cerrar el popup  
   $("#pop").click(function (){  
		$('#window').fadeOut('fast');
		$(this).fadeOut('slow');  
      
   }); 
     });