jQuery(document).ready(function($) {
	$('#checkin').DatePicker({
        format:'d/m/Y',
	date: $('#checkin').val(),
	current: $('#checkin').val(),
	starts: 1,
	position: 'bottom',
	onBeforeShow: function(){
		$('#checkin').DatePickerSetDate($('#checkin').val(), true);
	},
	onChange: function(formated, dates){
		$('#checkin').val(formated);
			$('#checkin').DatePickerHide();
	}

        });
        
        $('#checkout').DatePicker({
        format:'d/m/Y',
	date: $('#checkout').val(),
	current: $('#checkout').val(),
	starts: 1,
	position: 'bottom',
	onBeforeShow: function(){
		$('#checkout').DatePickerSetDate($('#checkout').val(), true);
	},
	onChange: function(formated, dates){
		$('#checkout').val(formated);
			$('#checkout').DatePickerHide();
	}

        });
        
        $('#bookform').validate();

});
