$(function(){
	
	//Hide (Collapse) the toggle containers on load
	$(".faq_box .intro").hide();
	

	//Switch the "Open" and "Close" state per click
	$(".faq_box .title").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$(".faq_box .title").click(function(){
		$(this).next(".faq_box .intro").slideToggle();
	});
});

