		$(document).ready(function() {
		
			$(".autopop")
			
			 .fancybox({
				'width'				: '96%',
				'height'			: '96%',
				'autoScale'			: false, //true,
				'autoDimensions'	: false, //true,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
				});

			
			var diavisto = $.cookie('diavisto');
			
			var hoy = new Date().getDate();
			
			
			if (diavisto != hoy)
			{
				$(".autopop").trigger('click');
				$.cookie('diavisto', hoy);
			}
			
			
			//$(".autopop").trigger('click'); //.click();
				
		
		});
