$(function() {
  $('.error').hide();
 
  $(".button").click(function() {
		// validate and process form
		// first hide any error messages
    $('.error').hide();
		
		var email = $("input#email").val();
		if (email == "");
		var email = $("input#email").val();
		if (email == "you@yourdomain.com")
		{
      $("label#email_error").show();
      $("input#email").focus();
      return false;
    }

		var dataString = '&email=' + email;
		//alert (dataString);return false;
		
		$.ajax({
      type: "POST",
      url: "submit/",
      data: dataString,
      success: function() {
        $('#contact_form').html("<div id='message'></div>");
        $('#message').html("<p><b>Thank you.</b> We will be in touch soon.</p")
        .hide()
        .fadeIn(1500, function() {
          $('#message');
        });
      }
     });
    return false;
	});
});
runOnLoad(function(){
  $("input#name").select().focus();
});
