/* English initialisation for the jQuery UI date picker plugin. */
/* Written by Keith Wood (kbwood@virginbroadband.com.au) and Stéphane Nahmani (sholby@sholby.net). */
jQuery(function($){
	$.datepicker.regional['en'] = {
		clearText: 'Clear', clearStatus: 'Clear Selected Date',
		closeText: 'Close', closeStatus: 'Close without changing',
		prevText: '&#x3c;Prev', prevStatus: 'See the previous month',
		prevBigText: '&#x3c;&#x3c;', prevBigStatus: '',
		nextText: 'Next&#x3e;', nextStatus: 'See the next month',
		nextBigText: '&#x3e;&#x3e;', nextBigStatus: '',
		currentText: 'Current', currentStatus: 'See the current month',
		monthNames: ['January','February','March','April','May','June',
		'July','August','September','October','November','December'],
		monthNamesShort: ['Jan','Feb','Mar','Apr','May','Jun',
		'Jul','Aug','Sep','Oct','Nov','Dec'],
		monthStatus: 'See another month', yearStatus: 'See another year',
		weekHeader: 'Wk', weekStatus: 'Week of the year',
		dayNames: ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
		dayNamesShort: ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'],
		dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
		dayStatus: 'Use DD as the first day of the week', dateStatus: '\'Choose\' the DD of MM',
		dateFormat: 'dd/mm/yy', firstDay: 1,
		initStatus: 'Choose the date', isRTL: false};
	$.datepicker.setDefaults($.datepicker.regional['en']);
});
