


/****************************************************/
/*				CUSTOM MENU PRINCIPAL				*/
/****************************************************/
customMenuPrincipal = function() {
	if($('menu_menuprincipal')){
		$$('#menu_menuprincipal li').each(function(s, index) {
			if(s.id.split('_')[2] == '126') {
				s.className = 'gobackhome';
				s.setAttribute('title','Page d\'accueil');
			}
		});
		var nodeDeMerde = $('menu_menuprincipal').lastChild.childNodes;
		for(i=0; i<nodeDeMerde.length; i++) {
			if(nodeDeMerde[i].lastChild.nodeName == 'UL') nodeDeMerde[i].lastChild.style.marginLeft = -(i-1) * 97 + "px";
		}
	}
}

/****************************************************/
/*				FIX MENU DEROULANT IE				*/
/****************************************************/
sfHover = function(menu) {
	if(document.getElementById(menu)){
		var sfEls = document.getElementById(menu).lastChild.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"), "");
			}
		}
	}
}

/****************************************************/
/*				INITIALISATION DE LA PAGE			*/
/****************************************************/
function addLoadListenerPage(func) {
	if (window.addEventListener) {
		window.addEventListener("load", func, false);
	} else if (document.addEventListener) {
		document.addEventListener("load", func, false);
	} else if (window.attachEvent) {
		window.attachEvent("onload", func);
	}
}

if (document.getElementById && document.createTextNode) {
	addLoadListenerPage(function() {
		customMenuPrincipal();
	});
}