// JavaScript Document

function afficheSousMenu($idNiv1,nbreElem) {
	//CACHE LES AUTRES SOUS-MENUS
	for (tmp=1;tmp<=nbreElem;tmp++) {
		if (tmp!=$idNiv1) {
			$nomDeLaDiv="sousMenu_"+tmp;
			document.getElementById($nomDeLaDiv).style.visibility="hidden";
			document.getElementById($nomDeLaDiv).style.display="none";
			}
		}
	// AFFICHE LE BON
	$nomDeLaDiv="sousMenu_"+$idNiv1;
	document.getElementById($nomDeLaDiv).style.visibility="visible";
	document.getElementById($nomDeLaDiv).style.display="block";
	
	// couleur roll-over menu
	$nomDeLaDiv="menu_"+$idNiv1;
	document.getElementById($nomDeLaDiv).style.color="#FE120A";
	document.getElementById($nomDeLaDiv).style.fontWeight="bold";
	}

function couleurMenu($idNiv1,$color) {
	$nomDeLaDiv="menu_"+$idNiv1;
	document.getElementById($nomDeLaDiv).style.color="#"+$color;
	document.getElementById($nomDeLaDiv).style.fontWeight="normal";
	}