// JavaScript Document
$(document).ready(function() {
	    $(".pop2").fancybox({
			'width'				: 700,
			'height'			: 295,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});	
		  
		   $(".pop3").fancybox({
			'width'				: 700,
			'height'			: 410,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});
		   $(".pop4").fancybox({
			'width'				: 850,
			'height'			: 500,
			'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'
		});	
		
		$(".pop7").fancybox({
			'width'				: 700,
			'height'			: 350,
			'autoScale'     	: false,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'iframe'
		});
		
		   $(".pop8").fancybox({
			'width'				: 700,
			'height'			: 380,
			'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();
	  });		
	});
$(function(){$('.more_less').live('click',function(){$(this).parent().prev().slideToggle(); var dg=$(this).text(); if(dg!='less [-]'){$(this).text('less [-]')}else{$(this).text('more [+]')}})})

