jQuery(document).ready(function($){

	// close popup - sponsors
	$("#ClosePopUp").click(function(){
		// hide the popup
		$(this).parent().parent().hide();
		
		// set the cookie
		$.cookie("chks_popup", "dontShow", { expires: 0.01 });
	})
	
	
	// box over the site
	$(".overBox").fancybox({
				'autoScale'			: true,
				'transitionIn'		: 'easingIn',
				'transitionOut'		: 'easingOut',
				'type'				: 'iframe',
				'width'			    : 500,
				'height'            : 400,
				'overlayColor'      : '#000',
				'overlayOpacity'    : 0.85,
				'titleShow'			: false
	});
	
	$(".commentRoll").click(function(){
		$(".commentsBox").slideToggle("fast");
	});
	
	
	
	$("a.galleryImage").fancybox();

	$(".videoBox").fancybox({
	    'padding'           : 0,
		'width'				: 720,
		'height'			: 576,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
	$('.fancyYouTube').click(function(){
		$.fancybox({
				   'transistionIn'	: 'elastic',
				   'transistionOut'	: 'elastic',
				   'width'			: 700,
				   'height'			: 495,
				   'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				   'type'			: 'swf',
				   'autoScale'		: false,
				   'autoDimensions'	: false,
				   'swf'			: {
				   		'wmode'				: 'transparent',
						'allowfullscreen'	: 'true'
				   }
				   });
		return false;
	});
	


	
});

