/* Italian initialisation for the jQuery UI date picker plugin. */
/* Written by Antonello Pasella (antonello.pasella@gmail.com). */
jQuery(function($){
	$.datepicker.regional['it'] = {
		closeText: 'Chiudi',
		prevText: '&#x3c;',
		nextText: '&#x3e;',
		currentText: 'Oggi',
		monthNames: ['gennaio','febbraio','marzo','aprile','maggio','giugno',
			'luglio','agosto','settembre','ottobre','novembre','dicembre'],
		monthNamesShort: ['gen','feb','mar','apr','mag','giu',
			'lug','ago','set','ott','nov','dic'],
		dayNames: ['domenica','luned&#236','marted&#236','mercoled&#236','gioved&#236','venerd&#236','sabato'],
		dayNamesShort: ['dom','lun','mar','mer','gio','ven','sab'],
		dayNamesMin: ['do','lu','ma','me','gi','ve','sa'],
		weekHeader: 'sm',
		dateFormat: 'dd/mm/yy',
		firstDay: 1,
		isRTL: false,
		showMonthAfterYear: false,
		yearSuffix: ''};
	$.datepicker.setDefaults($.datepicker.regional['it']);
});
