$(".signUpButton").click(function() {  
var boxID = '#signupContent';
       var email = $("input#inviteEmail").val();  
        if (email == "") {  
 		  
   		} 
	//var dataString = $("form.feedback").serialize();
	//var dataString = $("#feedBackForm form").serialize()
	var email = $("input#email").val();  
 	var dataString = 'email=' + email;
		
		$.ajax({  
  			type: "POST",  
  			url: "addToEmailDB.php",  
  			data: dataString,  
 			success: function() {  
   				 $(boxID).html("<div id='message'></div>");   
   				 $('#message').html("<p style='font-size:.9em; color:white; font-family:times new roman; font-variant: small-caps;'>Thanks for your email. We will send you some of our 2012 deals and specials shortly...").hide().fadeIn(1500, function() { }); 
			},
			error: function() {  $(boxID).html("<div id='message'></div>");   
   				 $('#message').html("<h2>We didn't get that. Can you try again?</h2>").hide().fadeIn(1500, function() { }); }
		});
	//}
	return false;
  });  
