

		function setDate()
		{
			
			jours = ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'];
			mois = ['Janvier','Février','Mars','Avril','Mai','Juin','Juillet','Aout','Septembre','Octobre','Novembre','Decembre'];
			today = new Date();
			currentDay = today.getDay();
			currentDayofMonth = today.getDate();
			currentMonth = today.getMonth();
			currentYear = today.getYear();
			
			document.getElementById('hh_datediv').innerText = jours[currentDay] + ' ' + currentDayofMonth + ' ' + mois[currentMonth] + ' ' + currentYear;
	


		}
			
