//---------------------Sélection menu CSS-------------------
function SelectMenu(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SelectMenu";
 }
}
//---------------------Sélection menu images CSS-------------------
function SelectionMenu(IdCell) 
{ 
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  var src = document.getElementById(IdCell).src;
  document.getElementById(IdCell).src = src.replace(".png","-over.png");
 } 
}
//---------------------Sélection menuAdmin CSS-------------------
function SelectionMenuAdmin(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SelectMenuAdmin";
 }
}


//---------------------Sélection menu cote-------------------

function SelectMenuCote(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="MenuSelect";
 }
}
function SelectMenu2(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="MenuSelect2";
 }
}

function SousMenu(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SousMenu";
 }
}

