var startDateTitle = "";
var endDateTitle = "";

YAHOO.widget.Calendar.prototype.buildMonthLabel = function() {
	var text = this.cfg.getProperty("pagedate").getFullYear() + " " + this.Locale.LOCALE_MONTHS[this.cfg.getProperty("pagedate").getMonth()];
	return text;
};

function resetCalendarLocale(obj) {
	obj.cfg.setProperty("MONTHS_SHORT", ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"]);
	obj.cfg.setProperty("MONTHS_LONG", ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"]);
	obj.cfg.setProperty("WEEKDAYS_1CHAR", ["일", "월", "화", "수", "목", "금", "토"]);
	obj.cfg.setProperty("WEEKDAYS_SHORT", ["일", "월", "화", "수", "목", "금", "토"]);
	obj.cfg.setProperty("WEEKDAYS_MEDIUM", ["일", "월", "화", "수", "목", "금", "토"]);
	obj.cfg.setProperty("WEEKDAYS_LONG", ["일", "월", "화", "수", "목", "금", "토"]);
	obj.cfg.setProperty("START_WEEKDAY", 1);
}
