(function ($) {

$(document).ready(function () {
   $("dl.portlet dd").hide();
   $("dl.portlet dt").css("cursor", "pointer").click(function () {
        $(this).nextAll().slideToggle("fast");
   });
});

})(jQuery);
