// JavaScript Document hover images

  
   function hoverAgenda()
   {
     var agenda = document.getElementById('agenda');
     
     agenda.style.display = "block";
   }
   
   function outAgenda()
   {
     var agenda = document.getElementById('agenda');
     
     agenda.style.display = "none";
   } 
   
   function hoverLiens()
   {
     var liens = document.getElementById('liens');
     
     liens.style.display = "block";
   }
   
   function outLiens()
   {
     var liens = document.getElementById('liens');
     
     liens.style.display = "none";
   }  
   
   function hoverArchives()
   {
     var archives = document.getElementById('archives');
     
     archives.style.display = "block";
   }
   
   function outArchives()
   {
     var archives = document.getElementById('archives');
     
     archives.style.display = "none";
   }
   
   function hoverBand()
   {
     var band = document.getElementById('band');
     
     band.style.display = "block";
   }
   
   function outBand()
   {
     var band = document.getElementById('band');
     
     band.style.display = "none";
   }
   
   function hoverContact()
   {
     var contact = document.getElementById('contact');
     
     contact.style.display = "block";
   }
   
   function outContact()
   {
     var contact = document.getElementById('contact');
     
     contact.style.display = "none";
   }
   
   function hoverAssociation()
   {
     var association = document.getElementById('association');
     
     association.style.display = "block";
   }
   
   function outAssociation()
   {
     var association = document.getElementById('association');
     
     association.style.display = "none";
   }
    

