YAHOO.widget.Calendar2up_EN_Cal = function(id, containerId, monthyear, selected) {
	if (arguments.length > 0)
	{
		this.init(id, containerId, monthyear, selected);
	}
}

YAHOO.widget.Calendar2up_EN_Cal.prototype = new YAHOO.widget.Calendar2up_Cal();

YAHOO.widget.Calendar2up_EN_Cal.prototype.customConfig = function() {
	this.Config.Locale.MONTHS_SHORT = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
	this.Config.Locale.MONTHS_LONG = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
	this.Config.Locale.WEEKDAYS_1CHAR = ["S", "M", "T", "W", "T", "F", "S"];
	this.Config.Locale.WEEKDAYS_SHORT = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"];
	this.Config.Locale.WEEKDAYS_MEDIUM = ["Sun", "Mon", "Tur", "Wen", "Чет", "Пет", "Съб"];
this.Config.Locale.WEEKDAYS_LONG = ["Неделя","Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"];
	this.Config.Options.START_WEEKDAY = 1;
}


/*************************************/

YAHOO.widget.Calendar2up_EN = function(id, containerId, monthyear, selected) {
	if (arguments.length > 0)
	{	
		this.buildWrapper(containerId);
		this.init(2, id, containerId, monthyear, selected);
	}
}

YAHOO.widget.Calendar2up_EN.prototype = new YAHOO.widget.Calendar2up();

YAHOO.widget.Calendar2up_EN.prototype.constructChild = function(id,containerId,monthyear,selected) {
	var cal = new YAHOO.widget.Calendar2up_EN_Cal(id,containerId,monthyear,selected);
	return cal;
};
