function lienTableau() {
    
    $('.tdClickable').click(function() {
        window.location = $(this).parents('tr').children('td:first').children('a').attr('href');
        return false;
    });
    
    $('.tdClickable').hover(function() {
        $(this).parents('tr').children('.tdClickable').each(function() {
            $(this).toggleClass('tdClickableHover');
        })
    });


    
}
