// Passe le texte du menu survolé en bleu
function Over(num_menu) {
	imageObj = document.getElementById(num_menu);
	imageObj.style.color = "#01A9E0";
	imageObj.style.backgroundColor = "#E0F3F9";
};
// Remet le texte du menu survolé en gris
function Out(num_menu) {
	imageObj = document.getElementById(num_menu);
	imageObj.style.color = "#5C5C5C";
	imageObj.style.backgroundColor = "#FFFFFF";
};
