
function mouseOverMenu(psIdImg){

  if (psIdImg == 'sec_Accueil')  
    document.getElementById(psIdImg).src = 'images/Accueil/MenuHorizontale/bt_Accueil.jpg';    
  if (psIdImg == 'sec_Pedagogique')
    document.getElementById(psIdImg).src = 'images/Pedagogique/MenuHorizontale/bt_Vie-pedagogique.jpg';
  if (psIdImg == 'sec_Parascolaire')
    document.getElementById(psIdImg).src = 'images/Parascolaire/MenuHorizontale/bt_Vie-parascolaire.jpg';
  if (psIdImg == 'sec_Service')
    document.getElementById(psIdImg).src = 'images/Services/MenuHorizontale/bt_services.jpg';
  if (psIdImg == 'sec_Admission')
    document.getElementById(psIdImg).src = 'images/Admission/MenuHorizontale/bt_Admission.jpg';
}

function mouseLeaveMenu(psIdImg, psSection){
  if (psIdImg == 'sec_Accueil')
    document.getElementById(psIdImg).src = 'images/' + psSection + '/MenuHorizontale/bt_Accueil.jpg';
  if (psIdImg == 'sec_Pedagogique')       
    document.getElementById(psIdImg).src = 'images/' + psSection + '/MenuHorizontale/bt_Vie-pedagogique.jpg';
  if (psIdImg == 'sec_Parascolaire')  
    document.getElementById(psIdImg).src = 'images/' + psSection + '/MenuHorizontale/bt_Vie-parascolaire.jpg';
  if (psIdImg == 'sec_Service')  
    document.getElementById(psIdImg).src = 'images/' + psSection + '/MenuHorizontale/bt_services.jpg';
  if (psIdImg == 'sec_Admission')  
    document.getElementById(psIdImg).src = 'images/' + psSection + '/MenuHorizontale/bt_Admission.jpg';
 
}
