$(document).ready(function() {
$('div.v-menu li.selected').each(function() { 
  $(this).parents('ul:not(#objects)').show();
  $(this).parents('li').addClass('selected');
  $(this).children('ul:not(#objects)').show();
});
});
