$(document).ready(function(){
           
			$('#MakeBooking').click(function(){
            	var now = new Date();
				var divdate = new Date();
				var dateparts = $('#server_date').val().split('-');
				divdate.setDate(parseInt(dateparts[2]));
				divdate.setMonth((parseInt(dateparts[1])-1));
				divdate.setYear(parseInt(dateparts[0]));
				if (divdate.getTime() < now.getTime()) {
					var agree = confirm("The arrival date on the reservation is " + $('#sdate').val()  + " Are you sure you wish to proceed?");
					if (agree)
					{
						return true;
					}
					else
					{
						return false;
					}
				}
			});
			
			$(".hotelDetailPrevImgSmallFrame img").hover(function() {

				$(".hotelDetailPrevImgLargeFrame img").attr("src",$(this).attr("src")) ;
			
			});
}); 

		