// JavaScript Document
$(document).ready(function() {
						   
	$(".dg3").fancybox({
			'width'			: 800,
			'height'		: 500,
			'autoScale'    	: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'type'			: 'iframe'
	});
						   
						   
	$(".dg4").fancybox({
			'width'			: 520,
			'height'		: 250,
			'autoScale'    	: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'type'			: 'iframe'
	});
						   
						   
   $(".pop2").fancybox({
			'width'				: 400,
			'height'			: 270,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		  
	 $(".pop3").fancybox({
			'width'				: 900,
			'height'			: 370,
			'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();
	  });		
	});

