/* Begin Dutch Calendar */

YAHOO.widget.Calendar_NL = function(id, containerId, monthyear, selected) {
	if (arguments.length > 0)
	{
		this.init(id, containerId, monthyear, selected);
	}
}

YAHOO.widget.Calendar_NL.prototype = new YAHOO.widget.Calendar();

YAHOO.widget.Calendar_NL.prototype.customConfig = function() {
		this.Config.Locale.MONTHS_SHORT = ["Jan", "Feb", "Maa", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"];
		this.Config.Locale.MONTHS_LONG = ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"];
		this.Config.Locale.WEEKDAYS_1CHAR = ["Z", "M", "D", "W", "D", "V", "Z"];
		this.Config.Locale.WEEKDAYS_SHORT = ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za"];
		this.Config.Locale.WEEKDAYS_MEDIUM = ["Zon", "Maa", "Din", "Woe", "Don", "Vri", "Zat"];
		this.Config.Locale.WEEKDAYS_LONG = ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag"];

		this.Config.Options.START_WEEKDAY = 1;
	}

/* End Dutch Calendar */