// JavaScript Document
$(document).ready(function (){
	/*					  //Conseguir valores de la img 
   var img_w = $("#pop iframe").width() + 40; //10
   var img_h = $("#pop iframe").height() + 40; //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)-330; 
   h = 555;//(h/2) - (img_h/2); 
   $("#pop").css("left",w + "px"); 
   $("#pop").css("top",h + "px");
   //temporizador, para que no aparezca de golpe 
  setTimeout("mostrar()",1500);
   $("#cerrar").click(function (){ 
      $("#pop").fadeOut('slow'); 
   });
   
   */
   	$("#various3").fancybox({
				'width'				: '4',
				'height'			: '5',
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'type'				: 'iframe',
				'overlayColor'		: '#000'
			});
	 	$("#various4").fancybox({
				'width'				: '5',
				'height'			: '6',
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'type'				: 'iframe',
				'overlayColor'		: '#000'
			});
		
		

});

