function rappellerContexte()
	{
	adressePage=window.location.hostname + window.location.pathname;
	adressePage = adressePage.replace("//","/");
	for (i=0; i<=window.document.links.length-1;i++)
		{
		adresseLien=window.document.links[i].hostname + "/" + window.document.links[i].pathname;
		adresseLien = adresseLien.replace("//","/");
		if (adresseLien==adressePage && window.document.links[i].className=="lienMenu")
			{
			window.document.links[i].className="lienMenuActif";
			}
		}
	}