function displayMention(obj){
	if (document.getElementById(obj)){
		state = document.getElementById(obj).style;
    		if(state.display == 'none' || state.display == ''){
       			state.display = 'block';
			lien=document.getElementById('bascule').style;
			lien.background='#7389C5';
			lien.color='white';
     		}else{
       		state.display = 'none';
		lien=document.getElementById('bascule').style;
			lien.background='none';
			lien.color='#4D5C84';
     		}
	}
}
