// JavaScript Document
$(document).ready(function(){
		$("#close_welcome").click(function(){
			$("#overlay_big").fadeOut(1000);
		});
		
		$("#checkbox_notagain").click(function(){
			$("#overlay_big").fadeOut(1000);
			$.cookie('benjaminpotter_letter', 'notagain', { expires: 365 });
		});
});
