$(document).ready(function(){

  $("#result_true").dialog({ autoOpen: false, modal: true, title: "Booking Request Sent", width: "auto", height: "auto" });
  $("#booking_form").dialog({ autoOpen: false, modal: true, title: "Send Us Your Booking Request", width: "auto", height: "auto" });
  $("#arrival").datepicker();
  $("#departure").datepicker();

  $(".book-now").click(function(){ $("#booking_form").dialog('open'); });

  Recaptcha.create("6LeKvwkAAAAAANOKaKbf2p0QyXdJDqrlHfqROZLe", "recaptcha_div", { theme: "red", callback: Recaptcha.focus_response_field });

  var result = $("#post_result").val();
  if(result == 'true'){
    $("#result_true").dialog('open');
  }else if(result == 'false'){
    $("#booking_form").dialog('open');
    $("#result_false").html("The "+$("#post_error").val()+" field is required. Please try again.<br /><br />").css({ color: 'red' });
  }

  $("#cancel").click(function(){ $("#booking_form").dialog('close'); });

});

