$(function() {                                      
tree_menu("#tree-menu", 100, true);    
}); 
function tree_menu(ele,time,close_other) {             
$(ele + ' > li > a').click(function() { 
          
if(close_other) $(ele + ' > li > ul').slideUp(time); 
        
var next = $(this).next(); 
           
if(next.is(':visible')) { 
            
next.slideUp(time); 
            
$(this).find('span').html('+'); 
        
} else { 
             
next.slideDown(time); 
              
$(this).find('span').html('-'); 
         
}    
      
}); 
    
} 
