function changeGBcolor(elem, MouseIn) {    
  var obj = document.getElementById(elem);
	
	if (MouseIn == 1) {
		if(elem == 'news-id'){
				obj.style.backgroundColor = "#992234"
		} else if (elem == 'presta-id'){
				obj.style.backgroundColor = "#DD7B32"
		}  else if (elem == 'recettes-id'){
				obj.style.backgroundColor = "#5A383F"
		}  else if (elem == 'photos-id'){
				obj.style.backgroundColor = "#513124"
		}  else if (elem == 'livre-id'){
				obj.style.backgroundColor = "#DEA432"
		}  else if (elem == 'boutiques-id'){
				obj.style.backgroundColor = "#B6302F"
		}  else if (elem == 'sous-prestations'){
				obj.style.backgroundColor = "#E18E4C"
		}  else if (elem == 'sous-livre'){
				obj.style.backgroundColor = "#E4B355"
		} else if (elem == 'sous-news'){
				obj.style.backgroundColor = "#AF6D60"
		} 
	} else {
		if(elem == 'sous-prestations' || elem == 'sous-livre' || elem == 'sous-news'){
			obj.style.backgroundColor = "#AE9F88"
		} else {
			obj.style.backgroundColor = "#9B8C79"
		}
	}
}

function changeGBcolorMenu(colorIn, colorOut, elem, MouseIn) { 		
	var obj = document.getElementById(elem);
	if (MouseIn == 1) {
		obj.style.backgroundColor = colorIn	
	} else {
		obj.style.backgroundColor = colorOut
	}		
}


