﻿$(document).ready(function(){


	$(".accordion2 h6").click(function(){
		$(this).next("div").slideToggle("slow")
		.siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h6").removeClass("active");
	});

});
