function fnSetMenu(iIdMenu) {

	var oMenu = document.getElementById('menuleft');
	var oLi = oMenu.getElementsByTagName('li');
	var iNbLi = oLi.length;
	for(i = 0; i < iNbLi; i++) {
		if (oLi[i].getElementsByTagName('ul').length > 0) {// il y a un sous-menu
			var oA = oLi[i].getElementsByTagName('a')[0];
			var oUl = oLi[i].getElementsByTagName('ul')[0];
			if (!iIdMenu || typeof(iIdMenu) == 'object') {// on initialise le menu
				oA.id = i;
				oA.onclick = function() {
					fnSetMenu(this.id);
				}
			}
			if ((oLi[i].className == 'mselected' || oLi[i].className == 'mselected important') || typeof(iIdMenu) == 'string' && i == iIdMenu) {
				oUl.style.display = '';
			} else {
				oUl.style.display = 'none';
			}
		}
	}
	return false;
}

//window.onload = fnSetMenu;