// 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].href==window.document.location.href.substring(0,window.document.location.href.indexOf('?')))
			{
			window.document.links[i].className+=' actif';
			}
		}
	}