YAHOO.widget.Calendar2up_fr_Cal = function(id, containerId, monthyear, selected) {
	if (arguments.length > 0)
	{
		this.init(id, containerId, monthyear, selected);
	}
}

YAHOO.widget.Calendar2up_fr_Cal.prototype = new YAHOO.widget.Calendar2up_Cal();

YAHOO.widget.Calendar2up_fr_Cal.prototype.customConfig = function() {
	this.Config.Locale.MONTHS_SHORT = ["Jan", "Fev", "Mar", "Avr", "Mai", "Jui", "Juil", "Aou", "Sep", "Oct", "Nov", "Dec"];
	this.Config.Locale.MONTHS_LONG = ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"];
	this.Config.Locale.WEEKDAYS_1CHAR = ["D", "L", "M", "M", "J", "V", "S"];
	this.Config.Locale.WEEKDAYS_SHORT = ["Di", "Lu", "Ma", "Me", "Je", "Ve", "Sa"];
	this.Config.Locale.WEEKDAYS_MEDIUM = ["Di", "Lu", "Ma", "Me", "Je", "Ve", "Sa"];
	this.Config.Locale.WEEKDAYS_LONG = ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"];

	this.Config.Options.START_WEEKDAY = 1;
}

/*************************************/

YAHOO.widget.Calendar2up_fr = function(id, containerId, monthyear, selected) {
	if (arguments.length > 0)
	{	
		this.buildWrapper(containerId);
		this.init(2, id, containerId, monthyear, selected);
	}
}

YAHOO.widget.Calendar2up_fr.prototype = new YAHOO.widget.Calendar2up();

YAHOO.widget.Calendar2up_fr.prototype.constructChild = function(id,containerId,monthyear,selected) {
	var cal = new YAHOO.widget.Calendar2up_fr_Cal(id,containerId,monthyear,selected);
	return cal;
};
