jQuery(document).ready(function($) {
    $("dt").click(function(){
		$(this).next("dd").toggle();
	});
});
