$(function() {
  $('.error').hide();

  $("#button").click(function() {
	//hide errors
    $('.error').hide();
    //validate and process
	var email = $("input#email").val();
		if (email == "") {
      $("label#email_error").show();
      $("input#email").focus();
      return false;
    }
		
		var dataString = 'email=' + email;
		//alert (dataString);return false;
	
	    $('#subscribeForm').html("<div id='formOK'><h2>Thanks! We'll be in touch.</h2></div>");
		
	$.ajax({
      type: "POST",
      url: "http://williamscreativegroup.com/files/schumpert/rwn/rwnprocess.php",
      data: dataString,
      success: function() {

      }
     });
    return false;
	});
});
