$(document).ready(function(){
		$("dd:not(dd.open)").hide();
		$("dt a").click(function(){
    		if ($("dd:not:visible") .get()[0] !== $(this).parent().next().get()[0]) {			
				$("dd").fadeTo("fast", 0);
				$("dd:visible").slideUp("slow");
				$(this).parent().next().slideDown("def");
				$(this).parent().next().fadeTo("def", 1);
			}
			return true;
		});
});

