$(window).load(function() {
	$('#booknow-tour-date').datepicker({ minDate: 3, maxDate: "+6M"} );
	$('button.hot-deals').click(function () {
		window.location.href = $(this).attr('rel');
	});

	$('#book-now').click(function() {
		if ($('#tour-adult-passengers').val() == 0) {
			$( "#error-message" ).dialog({
				modal: true,
				buttons: {
					Ok: function() {
						$( this ).dialog( "close" );
					}
				}
			});

			return false;
		}
	});
});

