// JavaScript Document
$(document).ready(function() {
	    $(".pop1").fancybox({
			'width'				: 520,
			'height'			: 250,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		 
		  $(".pop2").fancybox({
			'width'				: 520,
			'height'			: 210,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		  
		   $(".pop3").fancybox({
			'width'				: 520,
			'height'			: 320,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});
		   $(".pop4").fancybox({
			'width'				: 700,
			'height'			: 180,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	

		$(".pop5").fancybox({
			'width'				: 700,
			'height'			: 400,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		   
	  $("#mostrar").click(function(event) {
		event.preventDefault();
		$("#caja").slideToggle();
	  });
	  
	  $("#caja a").click(function(event) {
		event.preventDefault();
		$("#caja").slideUp();
	  });		
	});

