//////////////////////////////////////////////////////////
//
// The Forbury Hotel
// Common javascript file
// By Neue Media
//
//////////////////////////////////////////////////////////

// Once the document is loaded and ready ...
 $(document).ready(function(){
  	  // This is using my customised version of superfish..
  	  if ( (jQuery.browser.msie && jQuery.browser.version < 7)) {
  	    $("ul.root").superfish();
  	  }

 	  $('input.date-picker').datePicker();
 	  $('input#f-time-of-sitting').timepicker();

});


