// kalp.js

function kalp_mail()
{
	return String.fromCharCode(109,97,105,108,116,111,58,107,97,108,112,64,119,97,110,97,100,111,111,46,102,114);
}

function mon_onload()
{
	var i=document.getElementById("img-entete");
	if (i) i.onclick=function(){location.href=kalp_mail();}
	
	var exp=/.*\/([^#]*).*/g
	var fichier_actuel=location.href.toLowerCase().replace(exp,"$1");

	var menu=document.getElementById("menu");
	if (menu)
	{
		var menus=menu.getElementsByTagName("A");
		var stemp="";
		for (var j=0; menus && (j < menus.length); j++)
		{
			stemp=menus[j].href.toLowerCase().replace(exp,"$1");
			if (stemp == fichier_actuel)
			{
				menus[j].setAttribute("class", "actif");
				menus[j].setAttribute("className", "actif");
			}
		}
	}
}

// ONLOAD
if (window.addEventListener)
{
	window.addEventListener('load', mon_onload, false);
}
if (window.attachEvent)
{
	window.attachEvent('onload', mon_onload);
}
