// independently show and hide
$(document).ready(function() {
  $('ol.expand li dl dd').hide();  
  $('ol.expand li dl dt').click(function() {
    $(this).next().toggle();
  });
});

