jQuery(document).ready(function() {
//the sliders
   $('#workcontent').find('dd').hide().end().find('dt:not(.workhead)').click(function() {
     $(this).next().slideToggle();
   });
   
});