 $(document).ready(function() {
   $('#reveal').hide();
   $("#start").append('<p id="showwrap"><a href="#reveal" id="show" title="reveal the newsletter signup form">Click here</a></p>');
	$('#show').click(function() {
		$('#reveal').show("slow");
		$('#showwrap').fadeOut('slow');
	});
  });