Если переключение медленное, вы можете установить стили CSS напрямую через jquery, например:
$(".tree_item").click(function(){
//check the next ul if it is expanded or not
if(this.next('ul:hidden').length == 0){
//if expanded hide it
this.next('ul').css('display', 'none');
}else{
//if not shown, show it
this.next('ul').css('display', 'block');
}
});
такой подход помог бы. Я не знаю, будет ли это работать быстрее, но попробуйте ...
Синан.