$(function() {
  $('.error').hide();
 
  $(".button").click(function() {
		// validate and process form
		// first hide any error messages
    $('.error').hide();
		
		var email = $("input#email").val();
		if (email == "") {
      $("label#email_error").show();
      $("input#email").focus();
      return false;
    }
		
		
	//var dataString = '&ea=' + email + '&llr=vwpllyfab' + '&m=1105697554133' + '&p=oi' + '&go=Go';	
        var dataString = '&ea=' + email;
	//alert (dataString);return false;
		
		$.ajax({
      type: "POST",
      url: "/jquery-ajax/bin/process.php",      
      //url: "http://visitor.r20.constantcontact.com/d.jsp",
      dataType: 'html',
      data: dataString,
      success: function() {
        $('#contact_form').html("<div id='message'></div>");
        $('#message').html("<p class=\"style3\">Yaay! Your email address has been added to our list. <b>Share the love of Christ with someone today!</b></p>")
        .hide()
        .fadeIn(1000, function() {
          $('#message');
        });
      }
     });
    return false;
	});
});

