// Peronnalisation bouton ok inscription newsletter
$(document).ready(function() {     
   $(".numero-tel-bt").hover(function(){     
       $(this).addClass("numero-tel-bt-hover");    
   },     
   function(){    
       $(this).removeClass("numero-tel-bt-hover");     
    });
});

// Effet hover sur les divs du bloc téléchargez...
$(document).ready(function() {     
   $("#telechargez div").hover(function(){     
       $(this).addClass("telechargez-div-hover");    
   },     
   function(){    
       $(this).removeClass("telechargez-div-hover");     
    });
});

// Peronnalisation bouton formulaire
$(document).ready(function() {     
   $(".submit").hover(function(){     
       $(this).addClass("submit-hover");    
   },     
   function(){    
       $(this).removeClass("submit-hover");     
    });
});

