var visited = 'visited_cookie';

$(function(){

	$("#overlay").click(function () { 
		$(this).fadeOut(200);
		$("a#close").fadeOut(200);
		
		$.cookie(visited, 'test', { path: '/', expires: 30 });
		//alert("cookie saved");
	});
	
	$("a#close").click(function () { 
		$.cookie(visited, 'test', { path: '/', expires: 30 });
		//alert("cookie saved");
		
		$(this).fadeOut(200);
		$("#overlay").fadeOut(200);
		
		return false;
	});
});

$(window).bind("load", function() {

	if ($.cookie(visited)) {
		//alert("The popup will not show again for a month.");
	} else {
		$("#overlay").css("height",$(document).height());
		$("#overlay").css("width",$(document).width());
		
		$("#overlay").oneTime(1000, function() {
			$("#close").fadeIn(200);
			$("#signup").css("z-index","1003");
				
			$(this).fadeIn(200);
		});
	}

});