// JavaScript Document


// MENU
function overSousMenu(chose) {
	chose.style.backgroundColor="#9d9ea0";
	}
function outSousMenu(chose) {
	chose.style.backgroundColor="#000000";
	}




// LISTES
function highlightListItem(idEnQuestion) {
	var idRow = "listRow"+idEnQuestion;
	document.getElementById(idRow).style.backgroundColor="#F5F5F5";
	for(i=1;i<=7;i++) {
		var idRouge = "listItem"+idEnQuestion+"-"+i;
		document.getElementById(idRouge).style.color="#E2001A";
		}
	}	
function normlightListItem(idEnQuestion) {
	var idRow = "listRow"+idEnQuestion;
	document.getElementById(idRow).style.backgroundColor="#FFFFFF";
	for(i=1;i<=7;i++) {
		var idRouge = "listItem"+idEnQuestion+"-"+i;
		document.getElementById(idRouge).style.color="#000000";
		}
	}