jQuery(function($) {
$("div.demo-show h3:first").addClass("active");
	$("div.demo-show table:not(:first)").hide();
 
	$("div.demo-show h3").click(function(){
		$(this).next("table").slideToggle("slow")
		.siblings("table:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});
});
