$(document).ready(function(){
		
	$(".accordion dt:first").addClass("active");
	$(".accordion dd:not(:first)").hide();

	jQuery.fn.slideFadeToggle = function(speed, easing, callback) {
	  return this.animate({opacity: 'toggle', height: 'toggle', width: 'toggle'}, speed, easing, callback);  
	};
	jQuery.fn.fadeToggle = function(speed, easing, callback) {
  		return this.animate({opacity: 'toggle'}, speed, easing, callback);  
	};

	$(".accordion dt").click(function(){
		$(this).next("dd").slideFadeToggle();
		//$(this).next("dd").slideFadeToggle().siblings("dd:visible").slideUp("slow");
		$(this).toggleClass("active");
		//$(this).siblings("dt").removeClass("active");
	});

});

