$(document).ready(function(){
    $("#banniereCentrale a").bind('mouseenter', function(){
        $(this).find('.overlay').fadeOut('fast');
    })
    $("#banniereCentrale a").bind('mouseleave', function(){
        $(this).find('.overlay').fadeIn('fast');
    });
})
