function heure() { 
	var Maintenant = new Date(); 
	//var fuseau = Maintenant.getTimezoneOffset();
	var heures = Maintenant.getHours(); 
	var minutes = Maintenant.getMinutes(); 
	var secondes = Maintenant.getSeconds();
	//heures = heures + (fuseau/60)+1;
	//heure été
	var annee = Maintenant.getFullYear();
	/*for (i=31; i >24; i--) {
	dimanche = new Date(annee, 2, i);
	if (dimanche.getDay()==0) break;
	}
	for (i=31; i >24; i--) {
	dimanche2 = new Date(annee, 9, i);
	if (dimanche2.getDay()==0) break;
	}
	if ((Maintenant >= dimanche) && (Maintenant < dimanche2)) heures = heures + 1;
	//heure été */
	heures = ((heures < 10) ? "Il est 0" : "Il est ") + heures;
	minutes = ((minutes < 10) ? "h0" : "h") + minutes; 
	secondes = ((secondes < 10) ? "m0" : "m") + secondes;
	if(navigator.appName == "Microsoft Internet Explorer")
		horloge = heures + minutes + secondes;
	else
		horloge = heures + minutes;
	if (document.getElementById){
		document.getElementById("heure").innerHTML=horloge;
	}
	if(navigator.appName == "Microsoft Internet Explorer")
		setTimeout("heure()",1000);
	//else
		//setTimeout("heure()",1000);
	
}
