// For js specific CSS, using html.js
$(document.documentElement).addClass('js');

jQuery(function() {
  $('#writers dt').toggle(
    function() {
        $(this).next().show();
        $(this).addClass('expanded');
        return false;
      },
      function() {
        $(this).next().hide();
        $(this).removeClass('expanded');
        return false;
      }
  );
})