// JavaScript Document

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

$(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', '590px');
   $("#pop").css('height', '390px');
    $("#pop").css('padding', '5');
   
   //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) - (590/2);
   h = (h/2) - (390/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');
	  $(contenedor).fadeOut('slow');
   });

});
