$(function() {
	$("#txtDeparture").datepicker();
	
	$("#txtArrival").datepicker({
		onClose: function(date) {
			var departure = new Date(date);
			departure.setDate(departure.getDate() + 5);
			$("#txtDeparture").datepicker('setDate', departure);
		}
	});
	
});