$('.book-list-index').click(function(){
$('.book-list-show-index').hide('slow');
- $(this).parent().next('ul').toggle('slow');
+ if($(this).parent().next('ul:not(:hidden)').length == 0){
+ $(this).parent().next('ul').toggle('slow');
+ }
return false;
});