// JavaScript Document
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);

// Script pour effacer un champ
function clearValue(object) {
	if (object.value == object.defaultValue) {
	object.value = "";
	}
}
// Script pour restaurer le contenu d'un champ
function restoreValue(object) {
if (object.value === "") {
	object.value = object.defaultValue;
	}
}
