//cache de l'élément infos
function cacheInfos(path) {
	//document.getElementById('infos').style.visibility='hidden';
	path.firstChild.style.color='#FF7E7A';
}

//apparition de l'élément infos
function showInfos(path) {
	//document.getElementById('infos').style.visibility='visible';
	path.firstChild.style.color='#A1A1A1';
}
