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 == 0 ? "24" : (((heures < 10) ? " 0" : " ") + heures);
	minutes = ((minutes < 10) ? ":0" : ":") + minutes;
	secondes = ((secondes < 10) ? ":0" : ":") + secondes;
	document.getElementById('horloge').firstChild.data = heures + minutes;
	setTimeout("heure()", 1000);
}
