$(document).ready(function() {
	// show overlay, only if not disabled previously
	if ($.cookie("overlay-disabled")==null){
		$("a.newwebsite-overlay").fancybox({overlayShow: true});
		$("a.newwebsite-overlay").trigger('click');
	}
	
	// close overlay
	$("a.newwebsite-overlay-close").click(function(){
		$.fancybox.close();
	});
	
	// set cookie to permanently disable the overlay
	$("input.newwebsite-overlay-disable").click(function(){
		if ($("input.newwebsite-overlay-disable").attr('checked')){
			$.cookie("overlay-disabled", "true", { expires: 365 });
		}else{
			$.cookie("overlay-disabled", null);
		}
	});
});
