$(document).ready(function() {
	var cookie_name = 'fides_flash_intro';
	var cookie_options = { path: '/', expires: 1 };

	$("#intro").click(function() {
		$.fancybox({
			'hideOnOverlayClick' : false,
			'padding'		     : 0,
			'autoScale'		     : false,
			'transitionIn'	     : 'none',
			'transitionOut'	     : 'none',
			'title'			     : this.title,
			'width'		         : 640,
			'height'		     : 480,
			'href'			     : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			     : 'swf',
			'swf'			     : {
				'wmode'           : 'transparent',
				'allowfullscreen' : 'true',
				'scale'           : 'noborder',
				'bgcolor'         : '#d6d6d6'
			}
		});

		return false;
	});

	
	if ($.cookie(cookie_name) == null) {
		$.cookie(cookie_name, true, cookie_options);
		$("#intro").trigger('click');
	}

	//$("#intro").trigger('click');

});
