jQuery(function($){
	$("dd").hide();
	
	$("dt").click(function(){
		$(this).next().slideToggle("slow");
	});
});