// JavaScript Document


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

function videRech(champ) {
	if(champ.value=="RECHERCHE"){
		champ.value="";}
	}
function fillRech(champ) {
	if(champ.value==""){
		champ.value="RECHERCHE";}
	}


// 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";
		}
	}
