$(document).ready(function(){
	$("dd").hide();

	$("dt a").click(function(){
		$("dd:visible").slideUp("slow");
		if ($(this).parent().next().is(":hidden")) {
			$(this).parent().next().slideDown("slow");
		}
		return false;
	});
});
