
function installe_datepicker() {
	$(function() {
		$("#date").datepicker({ showOn: 'button', buttonImage: '../images/calendar2.gif', buttonImageOnly: true, buttonText : "Calendrier", changeMonth: true, changeYear: true, minDate: null, maxDate: '+1y', yearRange: '1920:2019', gotoCurrent: true});
	});
}

function installe_timepicker(champ) {
	$(function() {
		$('#'+champ).timepickr();
// 		$('#heure').timepickr({updateLive:false});
	});
}

