// Date featured at top of page template
// French Language

	var days=new Array(8);
	days[1] = "Dimanche";
	days[2] = "Lundi";
	days[3] = "Mardi";
	days[4] = "Mercredi";
	days[5] = "Jeudi";
	days[6] = "Vendredi";
	days[7] = "Samedi";
	var months=new Array(13);
	months[1] = "janvier";
	months[2] = "f&eacute;vrier";
	months[3] = "mars";
	months[4] = "avril";
	months[5] = "mai";
	months[6] = "juin";
	months[7] = "juillet";
	months[8] = "ao&ucirc;t";
	months[9] = "septembre";
	months[10] = "octobre";
	months[11] = "novembre";
	months[12] = "d&eacute;cembre";
	var dateObj=new Date()
	var wday=days[dateObj.getDay() + 1]
	var lmonth=months[dateObj.getMonth() + 1]
	var date=dateObj.getDate()
	document.write(wday + ", le " + date + " " + lmonth )
