/* Tools */
$(document).ready(function() {
  $("#content .toolBox").hide();
  
  
  $("#interactif_efi .item").click(
    
    function () {
        $("#content .toolBox").hide();
        var el = $(this).attr("href");
        $(this).parent('li').append($(el));
        $(el).addClass("visible");
        $(el).show();
        
        return false;
      }
  );
  
  $("#interactif_efi .item").focus(
    
    function () {
        $("#content .toolBox").hide();
        var el = $(this).attr("href");
        $(this).parent('li').append($(el));
        $(el).addClass("visible");
        $(el).show();
      }
  );
  
  $("#content .toolBox").hover(

      function () {

      },
      function () {
        $(this).hide();

      }
  );
  
  $("#content .annulation").click(
      function () {
        $("#content .toolBox").hide();
        return false;
      }
  );
  
});
