$(document).ready(function(){
    $("#msg_info").attr('title','Cliquez pour fermer.');
    $("#msg_info").click(function () {
        $(this).fadeOut('slow');
    });
    $(".close_info").click(function () {
        $(this).parent().fadeOut('slow');
        return false;
    });
    $(".bloc_hover").hover(
        function () {
            $(this).animate({backgroundColor: '#333'},500);
        }, 
        function () {
            $(this).animate({backgroundColor: '#EEE'},500);
        }
    );
    $(".bloc").removeClass('bloc_hover');
});
