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

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

YAHOO.widget.Calendar_CA.prototype.customConfig = function() {
	this.Config.Locale.MONTHS_SHORT = ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"];
	this.Config.Locale.MONTHS_LONG = ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"];
	this.Config.Locale.WEEKDAYS_1CHAR = ["D", "D", "D", "D", "D", "D", "D"];
	this.Config.Locale.WEEKDAYS_SHORT = ["Dg", "Dl", "Dm", "Dc", "Dj", "Dv", "Ds"];
	this.Config.Locale.WEEKDAYS_MEDIUM = ["Dge", "Dil", "Dim", "Dic", "Dij", "Div", "Dis"];
	this.Config.Locale.WEEKDAYS_LONG = ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Disabte"];
    this.Config.Locale.MDY_MONTH_POSITION = 2;
    this.Config.Locale.MDY_DAY_POSITION = 3;
    this.Config.Locale.MDY_YEAR_POSITION = 1;
	this.Config.Options.START_WEEKDAY = 1;
    this.Config.Style.CSS_CELL_OOM = "oom2";
    this.Config.Style.CSS_CELL_RESTRICTED = "oom";
}