//-----------------------------------------------------------------------------------------------------------
/* JSLocale constructor */
function JSLocale(){
	this.months					= new Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
	this.full_months			= new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
	this.meridians				= new Array('AM', 'PM');
	this.week_days				= new Array('Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa');
}
/* set prototype */
JSLocalePrototype = JSLocale.prototype;
//-----------------------------------------------------------------------------------------------------------
JSLocalePrototype.getMonths = function() {
	return this.months;
}

JSLocalePrototype.getFullMonths = function() {
	return this.full_months;
}

JSLocalePrototype.getMeridians = function() {
	return this.meridians;
}

JSLocalePrototype.getWeekDays = function() {
	return this.week_days;
}
//-----------------------------------------------------------------------------------------------------------