function display_sous_sous_classe(compteur)
{
	if (this.document.getElementById("sous_sous_classe_"+compteur).style.display == "block") {
		this.document.getElementById("sous_sous_classe_"+compteur).style.display = "none";
		this.document.getElementById("sous_classe_"+compteur).className = "sous_classe_off";
	}
		
	else {
		this.document.getElementById("sous_sous_classe_"+compteur).style.display = "block";
		this.document.getElementById("sous_classe_"+compteur).className = "sous_classe_on";
	}
}

function display_fiche(compteur1,compteur2)
{
	if (this.document.getElementById("fiche_"+compteur1+"_"+compteur2).style.display == "block") {
		this.document.getElementById("fiche_"+compteur1+"_"+compteur2).style.display = "none";
		this.document.getElementById("sous_sous_classe_li_"+compteur1+"_"+compteur2).className = "sous_sous_classe_off";
	}
	
	else {
		this.document.getElementById("fiche_"+compteur1+"_"+compteur2).style.display = "block";
		this.document.getElementById("sous_sous_classe_li_"+compteur1+"_"+compteur2).className = "sous_sous_classe_on";
	}
}

function Semaine(){
           this[0] = "Dimanche";  this[1] = "Lundi";
           this[2] = "Mardi";     this[3] = "Mercredi";
           this[4] = "Jeudi";     this[5] = "Vendredi";
           this[6] = "Samedi";
           }

function Mois(){
           this[0] = "Janvier";    this[1] = "Février";
           this[2] = "Mars";       this[3] = "Avril";
           this[4] = "Mai";        this[5] = "Juin";
           this[6] = "Juillet";    this[7] = "Août";
           this[8] = "Septembre";  this[9] = "Octobre";
           this[10] = "Novembre";  this[11] = "Décembre";
           }
today = new Date;
function date(){
        var semaine=new Semaine();
        var mois=new Mois();
        var myDate=new Date();
        annee = today.g
		annee = today.getFullYear();
        var result=semaine[myDate.getDay()]+" "+myDate.getDate()+" "+mois[myDate.getMonth()]+" "+annee;
        document.writeln(result);
}
