$(function(){ // when the DOM is ready
	$("#newsletter-signup button").click(function(){
		$("div.cover").show();
		$("div.news-pop").show("slow");
	});
	$("button.close").click(function(){
		$("div.cover").hide();
		$("div.news-pop").hide();
	});
});

