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

YAHOO.widget.Calendar2up_DE_Cal.prototype = new YAHOO.widget.Calendar2up_Cal();

YAHOO.widget.Calendar2up_DE_Cal.prototype.customConfig = function() {
	this.Config.Locale.MONTHS_SHORT = ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"];
	this.Config.Locale.MONTHS_LONG = ["leden", "únor", "březen", "duben", "květen", "červen", "červenec", "srpen", "září", "řijen", "listopad", "prosinec"];
	this.Config.Locale.WEEKDAYS_1CHAR = ["N","P", "U", "S", "Č", "P", "S"];
	this.Config.Locale.WEEKDAYS_SHORT = ["Ne", "Po", "Út", "St", "Čt", "Pá", "So"];
	this.Config.Locale.WEEKDAYS_MEDIUM = ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob"];
	this.Config.Locale.WEEKDAYS_LONG = ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota"];

	this.Config.Options.START_WEEKDAY = 1; //zacatek pondelim
}

/*************************************/

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

YAHOO.widget.Calendar2up_DE.prototype = new YAHOO.widget.Calendar2up();

YAHOO.widget.Calendar2up_DE.prototype.constructChild = function(id,containerId,monthyear,selected) {
	var cal = new YAHOO.widget.Calendar2up_DE_Cal(id,containerId,monthyear,selected);
	return cal;
};

