// JavaScript Document
function mostrar() { 
	$("#pop").fadeIn('slow');
	$("#pop2").fadeIn('slow');
}


function ocultar() { 
   $("#pop2").fadeOut('slow');
 
} //checkHover
$(document).ready(function (){
	 //Conseguir valores de la img 
   var img_w = $("#slideshow").width() + 10; 
   var img_h = $("#slideshow").height() + 28;

    
   //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); 

   $("#pop").css("left",w + "px");
   
      //temporizador, para que no aparezca de golpe 
   setTimeout("mostrar()",1700);

	setTimeout("ocultar()",6000);
   
     //Función para cerrar el popup 
   $("#cerrar").click(function (){ 
      $("#pop").fadeOut('slow'); 
   });
   
   });
