/**
 * Gestion des champs date.
 *
 * @author Nicolas TEODORI
 * @copyright OXYCUBE
 * @since 12/2011
 */
$(document).ready(function() {
	$(".champDate").datepicker();
	
	$(".champDate").focus(function() {
		$(this).blur();
	});
});
