
jQuery(document).ready(function(){
  // hide lists
	jQuery(".page_item ul").hide();
	jQuery(".cat-item ul").hide();
  
  // show right items
	jQuery(".current_page_item ul:first").slideDown();
	jQuery(".current-cat ul:first").slideDown();
	jQuery(".current_page_parent ul").show();
	jQuery(".current-cat-parent ul").show();
  
}); 