// JavaScript Document
function rappelerContexte() { 
	for (i=0; i<=window.document.links.length-1;i++)
		{
		if (window.document.links[i].href==window.document.location.href)
			{
			window.document.links[i].className+=' actif';
			}

		if (window.document.links[i].href==(window.document.location.href+"accueil"))
			{
			window.document.links[i].className+=' actif';
			}
		}
	}