//Help  Accordion Menu
$(document).ready(function(){
	$(".answer").hide();				//Hide (Collapse) the toggle containers on load

	$(".trigger").toggle(function(){	//Switch the "Open" and "Close" state per click
			$(this).addClass("active");
		},
		function () {
		$(this).removeClass("active");
	});

	$(".trigger").click(function(){		//Slide up and down on click
		$(this).next(".answer").slideToggle("fast");
	});
});

