// JavaScript Document
$(document).ready(function() {
	    $(".pop1").fancybox({
			'width'				: 700,
			'height'			: 200,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		 
		  $(".pop2").fancybox({
			'width'				: 700,
			'height'			: 250,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		  
		   $(".pop3").fancybox({
			'width'				: 700,
			'height'			: 670,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});
		   $(".pop4").fancybox({
			'width'				: 700,
			'height'			: 300,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		   
		 $(".pop5").fancybox({
			'width'				: 700,
			'height'			: 380,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		 
		 $(".pop6").fancybox({
			'width'				: 700,
			'height'			: 350,
			'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();
	  });		
	});



