  $(function() {
    $(".button").click(function() {
      	
		var name = $("input#name-field").val();
  		if (name == "") {
			$("input#name-field").focus();
			alert ('Please fill in your email address');return false;
			return false;
		}
		

		var email = $("textarea#email-field").val();
  		if (email == "") {
			$("textarea#email-field").focus();
			alert ('Please fill in your inquiry');return false;
			return false;
		}

	 var dataString = 'name='+ name + '&email=' + email;
  	//alert (dataString);return false;
	  $.ajax({
		type: "POST",
		url: "/js/process.php",
		data: dataString,
		success: function() {
		  $('#inquiry').html("<div id='message'></div>");
		  $('#message').html("<h2>Thanks for the inquiry, we'll be in touch shortly</h2>")
		  .hide()
		  .fadeIn(1500, function() {});
		}
	  });
	  return false;

	});
  });

