$(document).ready(function() {

  // Start Living The Dream
  $("#footer_submit").click(function(e) {
    e.preventDefault();
    $.post("/assets/php/footer_submit.php", {
      name: $("#footer_name").val(),
      email: $("#footer_email").val(),
      number: $("#footer_phone").val()
    }, function(data) {
      if (data == "Success") {
        $(".footer_form_wrap").html("<p>Thank you for your interest. <br />We will be in touch shortly.</p>");
      } else {
        //$(".footer_form_wrap").prepend("<p>Please make sure everything is correct and try again</p>");
      }
    })
    return false;
  });

  // Find Out More
  $("#dream_form_submit").click(function(e) {
    e.preventDefault();
    $.post("/assets/php/dream_form.php", {
      name: $("#dream_form_name").val(),
      email: $("#dream_form_email").val(),
      number: $("#dream_form_number").val()
    }, function(data) {
      if (data == "Success") {
        $(".dream_form_wrap").html("<p>Thank you for your interest. <br />We will be in touch shortly.</p>");
      } else {
        //$(".footer_form_wrap").prepend("<p>Please make sure everything is correct and try again</p>");
      }
    })
    return false;
  });

  // Find Out More
  $("#house_form_submit").click(function(e) {
    e.preventDefault();
    $.post("/assets/php/house_form.php", {
      name: $("#house_form_name").val(),
      email: $("#house_form_email").val(),
      number: $("#house_form_number").val()
    }, function(data) {
      if (data == "Success") {
        $(".house_form_wrap").html("<p>Thank you for your interest.</p><p>We will be in touch shortly.</p>");
      } else {
        //$(".footer_form_wrap").prepend("<p>Please make sure everything is correct and try again</p>");
      }
    })
    return false;
  });

  // Take The Tour
  $("#tour_form_submit").click(function(e) {
    e.preventDefault();
    $.post("/assets/php/tour_form.php", {
      name: $("#tour_form_name").val(),
      email: $("#tour_form_email").val(),
      number: $("#tour_form_number").val()
    }, function(data) {
      if (data == "Success") {
        $(".tour_form_wrap").html("<p>Thank you for your interest. <br />We will be in touch shortly.</p>");
      } else {
        //$(".footer_form_wrap").prepend("<p>Please make sure everything is correct and try again</p>");
      }
    })
    return false;
  });





});
