$(document).ready(function(){
	$("dl#expand dt:first").addClass("active");
	$("dl#expand dd:not(:first)").hide();

	$("dl#expand dt").click(function(){
		$(this).next("dd").slideToggle("slow")
		.siblings("dd:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("dt").removeClass("active");
	});

});