function AffichePresentation(){
	document.getElementById("ListeLabelsPresentation").style.visibility = "visible";
	CacheConsulting();
	CacheInfogerances();
	CacheApplications();
	CacheALaUne();
	CacheReferences();
}
function CachePresentation(){
	document.getElementById("ListeLabelsPresentation").style.visibility = "Hidden";
}
function AfficheConsulting(){
	document.getElementById("ListeLabelsConsulting").style.visibility = "visible";
	CacheInfogerances();
	CacheApplications();
	CacheALaUne();
	CacheReferences();
	CachePresentation();
}
function CacheConsulting(){
	document.getElementById("ListeLabelsConsulting").style.visibility = "Hidden";
}
function AfficheInfogerances(){
	document.getElementById("ListeLabelsInfogerences").style.visibility = "visible";
	CacheConsulting();
	CacheApplications();
	CacheALaUne();
	CacheReferences();
	CachePresentation();
}
function CacheInfogerances(){
	document.getElementById("ListeLabelsInfogerences").style.visibility = "Hidden";
}
function AfficheApplications(){
	document.getElementById("ListeLabelsApplications").style.visibility = "visible";
	CacheConsulting();
	CacheInfogerances();
	CacheALaUne();
	CacheReferences();
	CachePresentation();
}
function CacheApplications(){
	document.getElementById("ListeLabelsApplications").style.visibility = "Hidden";
}
function AfficheALaUne(){
	document.getElementById("ListeLabelsALaUne").style.visibility = "visible";
	CacheConsulting();
	CacheInfogerances();
	CacheApplications();
	CacheReferences();
	CachePresentation();
}
function CacheALaUne(){
	document.getElementById("ListeLabelsALaUne").style.visibility = "Hidden";
}
function AfficheReferences(){
	document.getElementById("ListeLabelsReferences").style.visibility = "visible";
	CacheConsulting();
	CacheInfogerances();
	CacheALaUne();
	CacheApplications();
	CachePresentation();
}
function CacheReferences(){
	document.getElementById("ListeLabelsReferences").style.visibility = "Hidden";
}
function CacheAll(){
	CacheReferences();
	CacheConsulting();
	CacheInfogerances();
	CacheALaUne();
	CacheApplications();
	CachePresentation();
}
