
 $(document).ready(function() {
    $("a.show-hidden").click(function () {
      $(this).next("div#Content ol li ol.hidden").slideToggle("fast");
      return false;
    });
 });
