function Example()
{
	var strDateInEnglish = "October 13, 2007";
	var d = new Date(strDateInEnglish);
	var strDateInFrench = d.toLongFrenchFormat();
	return strDateInFrench;
}


Date.prototype.toLongFrenchFormat = function ()
{
	var months = ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"];
	var date = this.getDate();
	if (date < 10)
	{
		date = "0" + date;	
	}
	var output = date + " " + months[this.getMonth()] + " " + this.getFullYear();
	return output;
}

