// JavaScript Document
 $(document).ready(function(){
							
							
		$("#newsletterSignup").hide();			
		//$("#signupThanks").hide();
		
		
		$(".shownewsletterSignup").click(function(event){
$("#newsletterSignup").toggle("slow");
											  });
		
 });
