
    function hideTable(){
         $("#couleur").hide(1000);
         $("#legendecolor").empty();
         $("#legendecolor").append('<b>Copieurs couleurs</b> <a href="#" onclick="showTable();">Afficher</a>');
    }
    function showTable(){
         $("#couleur").show(1000);
         $("#legendecolor").empty();
         $("#legendecolor").append('<b>Copieurs couleurs</b> <a href="#" onclick="hideTable();">Masquer</a>');
    }
    
    function hideTablebw(){
         $("#blackwhite").hide(1000);
         $("#legendebw").empty();
         $("#legendebw").append('<b>Copieurs noir & blanc</b> <a href="#" onclick="showTablebw();">Afficher</a>');
    }
    function showTablebw(){
         $("#blackwhite").show(1000);
         $("#legendebw").empty();
         $("#legendebw").append('<b>Copieurs noir & blanc</b> <a href="#" onclick="hideTablebw();">Masquer</a>');
    }

