
 

function months(){
	this[0]="Janvier";
	this[1]="F&eacute;vrier";
	this[2]="Mars";
	this[3]="Avril";
	this[4]="Mai";
	this[5]="Juin";
	this[6]="Juillet";
	this[7]="Ao&ucirc;t";
	this[8]="Septembre";
	this[9]="Octobre";
	this[10]="Novembre";
	this[11]="D&eacute;cembre";
}
//Fonction tableau compatible JavaScript 1.0
function days(){
	this[0]="Dimanche";
	this[1]="Lundi";
	this[2]="Mardi";
	this[3]="Mercredi";
	this[4]="Jeudi";
	this[5]="Vendredi";
	this[6]="Samedi";
}
var mois=new months();
var jour=new days();
var time=new Date();
var fr_jour_s=jour[time.getDay()];	//Jour de la semaine
var jour_m=time.getDate();	//Jour du mois
var fr_mois=mois[time.getMonth()]; //le mois
var annee=time.getFullYear();// annee de forme XXXX
// End Hiding -->
 
