$(document).ready(function () {
  $('ul.navlist ul').each(function () {
    $(this).hide();
  });
  
  $('ul.navlist .current_page_item').each(function () {
    $(this).show();
    $(this).parent().show();
    $(this).children().each(function () {
      $(this).show();
    });
  });
  
});
