jQuery(document).ready(function()
{
	
	jQuery("#submit").click(function(){
		var emailAddress = jQuery("#emailAddress").val();
		var firstName = jQuery("#firstName").val();
		var lastName = jQuery("#lastName").val();

		jQuery.post("http://www.runnelscenter.com/assets/cc/add_contact.php", { email_address: emailAddress, first_name: firstName, last_name: lastName, 'lists[]': ["http://api.constantcontact.com/ws/customers/imaginarycompany/lists/1"] },
		   function(data){
		     jQuery("#secret").html(data);
		     if (jQuery("#secret .error").html() != null)
		     {
		     	jQuery("#alert").html("<h3>This email address is either incorrectly formatted or already in use.</h3>");

		     } else {
		     	jQuery("#alert").html("<h3>Thanks for joining our mailing list. We'll be in touch soon.</h3>");

		     }
		     jQuery("#secret").html("");
		     jQuery("#alert").animate({
		     	height: "40px"
		     },1000);
		   });
		return false;
		});
	});
