jQuery(document).ready(function(){
  // Handler for .ready() called.
	Cufon.replace('.top', { fontFamily: "Guanine" });
	Cufon.replace('#home p', { fontFamily: "Guanine" });
	
	$('.input_date').datepicker();
	jQuery("#bookingForm").validationEngine();
	
	
	$(".submitBooking").mouseover(function() {$(this).css('background-color','#D0975F');});
	$(".submitBooking").mouseout(function() {$(this).css('background-color','#280A00');});

});

