

$(function(){
$(".faq-answer").hide();
$(".faq-question").click(function(){
$(this).next().slideToggle("slow");
});
});
