$(function(){
	$(".acordeon dt:first").addClass("active");
	//$(".acordeon dd:not(:first)").hide();
	$(".acordeon dt").click(function(){
		$(this).next(".acordeon dd").slideToggle("slow")
		.siblings(".acordeon dd:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(".acordeon dt").removeClass("active");
		return false;
	});
});
