$(document).ready(function () {
   $('.faq_question').click(function () {
      $(this).next().slideToggle();
   });
});
