$(document).ready(function() {
	$('#contents').hide();
	$('#promoClose').click(function() {
		// Show the contents so there's something to fade in to
		$('#contents').css('display','block');
		$('#overlay').fadeOut('slow');	
	});
	$('body').click(function() {
		// Show the contents to there's something to fade in to
		$('#contents').css('display','block');
		$('#overlay').fadeOut('slow');	
	});
});
