function change_bg(id_bg,la_classe) { //Permet de changer la couleur de fond du menu THERAPY
  if (document.getElementById) {
    document.getElementById(id_bg).className=la_classe; // Chgmt bgColor actif
  }
}
function change_visible(id_bg,etat,etat1) { //Permet de changer la couleur de fond du menu THERAPY
  if (document.getElementById) {
    document.getElementById(id_bg).style.visibility=etat; // Chgmt bgColor actif
    document.getElementById(id_bg).style.display=etat1; // Chgmt bgColor actif
  }
}

