$(document).ready(function(){


	$(".row h3").click(function(){
             if ( $(this).hasClass("active") ) {
                $(this).removeClass("active");
                $(this).next("p").slideUp("slow");
             }
             else {
                $("h3").removeClass();
                $(".row p:visible").slideUp("slow");
                $(this).next("p").slideToggle("slow");
                $(this).addClass("active");
             }
	});

});