function InitFileTree(){
      //$("ul.filetree ul").hide();
      $("ul.filetree .DIRlink").click(function(e){
        $(this).toggleClass('childs');
        //var $subUL = $(this).closest("li").find("ul").first();
        var subUL = $(this).parent("li").find('ul')[0];
        $(subUL).toggle();
        e.preventDefault();
        return;
      });
    }
InitFileTree();
