jQuery(function($){
	
	$(".accordion2 h3").eq(2).addClass("active");
	$(".accordion2 table").eq(2).show();

	$(".accordion2 h3").click(function(){
		$(this).next("table").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

});
