$(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 false;
	});
	
	$("dd a").click(function(){
		if ($("dd:visible") .get()[0] !== $(this).get()[0]) {			
			$("dd").fadeTo("fast", 0);
			$("dd:visible").slideUp("slow");
			$(this).parent().next().slideDown("def");
			$(this).parent().next().fadeTo("def", 1);
		}
		return false;
	});});

