// JavaScript Document
$(document).ready(function() {
	    $(".pop2").fancybox({
			'width'				: 700,
			'height'			: 200,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		  
		   $(".pop3").fancybox({
			'width'				: 700,
			'height'			: 280,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});
		   $(".pop4").fancybox({
			'width'				: 700,
			'height'			: 290,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		   		   $(".pop5").fancybox({
			'width'				: 720,
			'height'			: 635,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
				   		   		   $(".pop6").fancybox({
			'width'				: 720,
			'height'			: 415,
			'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();
	  });		
	});

