$(document).ready(function(){
	if ($.cookie('whatcouldNotification') != 'closed') {
		$('#notify-table').fadeIn('slow');
		$('body').css('margin-top', '2.7em');
	}
});

$('#notify-dismiss').click(function() {
	$('#notify-table').fadeOut('slow', function() {
		$('body').css('margin-top', '0');
		$.cookie('whatcouldNotification', 'closed', { expires: 7, path: '/', domain: 'whatcouldicook.com', secure: false });
	});
});

$('.close-notify').click(function() {
	$.cookie('whatcouldNotification', 'closed', { expires: 7, path: '/', domain: 'whatcouldicook.com', secure: false });
});
