$(document).ready(function(){
						   
		$("#depart").click(function(){
				document.getElementById('depart').value = document.getElementById('arrive').value;	
				showChooser(this, 'depart', 'chooserSpan', 2009, 2012, 'd-m-Y', false);
		});
		
		
		$("#depart_img").click(function(){
				document.getElementById('depart').value = document.getElementById('arrive').value;	
				showChooser(this, 'depart', 'chooserSpan', 2009, 2012, 'd-m-Y', false);
		});
		
		
});