sfHover = function() {
        var sfEls = document.getElementById("menu").getElementsByTagName("LI");
        for (var i=0; i<sfEls.length; i++) {
                sfEls[i].onmouseover=function() {
                        this.className+=" sfhover";
                }
                sfEls[i].onmouseout=function() {
                        this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
                }
        }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

// Copyright 2006 by Bob Brown and BlueLinkWebs.com. 
// Licensed under the Creative Commons Attribution License.
// Some rights reserved.
function gemaddr(node, domain, local) {
  var a = String.fromCharCode(64);
  var mt = String.fromCharCode(109,97,105,108,116,111,58);
  node.href = mt + local + a + domain;
  return true;
}





/******** AJOUTER POUR TESTS, A MODIFIER **************************/
function show() {
	if(document.getElementById("inge").style.display == "none") {
		document.getElementById("inge").style.display = "block";
	} else {
		document.getElementById("inge").style.display = "none";
	}
			
}

