$(document).ready(function() {
  $('dd').hide();
  $("dt").hover(
      function () {
        $(this).css("cursor", "pointer");
      }, 
      function () {
        $(this).css("cursor", "default");
      }
    );
  $("dt").click(function(){$('dd').hide();$(this).next().show()});
});

