В общем забил, там можно подогнать динамику на открытие/закрытие, подогнал.
.tree_menu ul {
padding:0;
margin:0;
list-style-type: none;
color:#5d5541;
background-color:#ead9b8;
overflow: hidden;
max-height: 500px;
transition: max-height 1s 0s ease-in;
}
ul.menu_hide {
overflow: hidden;
max-height: 0px;
transition: max-height 0.5s -0.3s ease-out;
}