	jQuery(document).ready(function(){
		jQuery("dd:not(:nth-child(2))").hide();
		jQuery("dt a").click(function(){
			jQuery("dd:visible").slideUp("slow");
			jQuery(this).parent().next().slideDown("slow");
			return false;
		});
	});
