$(document).ready(function() {
	$(".faq-question a").each(function() {
		$(this).click(function(){
			$(this).parent().parent().find(".faq-answer").slideToggle(); 
			$(this).parent().toggleClass("faq-active"); 
			return false;
		});
	});
});


