$(document).ready(function()
{
	$('#arrivalDate').datepicker({
	dateFormat: 'dd/mm/yy',
minDate:0,
	onSelect:function(theDate) {
				var day=theDate.substr(0,2);
		var month=theDate.substr(3,2);
		var year=theDate.substr(6,4);
	$('#departureDate').datepicker('option','minDate',new Date(year,month-1,day));
}

})
	
$('#imgArrival').click(function() {
			$('#arrivalDate').datepicker('show');
});

	$('#departureDate').datepicker({
	dateFormat: 'dd/mm/yy',
minDate:0,
	onSelect:function(theDate) {
	//$("#arrivalDate").datepicker('option','maxDate',new Date(theDate))
}
})
	
$('#imgDepart').click(function() {
		$('#departureDate').datepicker('show');
});


	$('#checkin').datepicker({
	dateFormat: 'dd/mm/yy',
minDate:0
});
$('#imgcheckin').click(function() {
			$('#checkin').datepicker('show');
});

})




