$(document).ready(function () {

  if($("#booking-form").length > 0) {
  
    // Get current navigation link and set active class for styling
    $("a[href*='/booking']").parent().addClass("active");  
    
    $('#booking-form').live('submit', function(){
      $(this).ajaxSubmit({
        url: '/book',
        type: 'POST',
        success: function(data){
          $('#content').html(data);
        },
        beforeSubmit: function(data) {
          var form = $("#booking-form");
          form.validate();
          if (form.valid()) {
            return true;
          }
          return false;
        }
      });
      return false
    });
    
    // $("#booking-form").formwizard({
    //   historyEnabled : true, 
    //   formPluginEnabled: true
    // });
  }
  

});


