﻿$(document).ready(function() {
    //hide the all of the element with class faq_answer
    $(".faq_answer").hide();
    //toggle the componenet with class faq_answer
    $(".faq_question").click(function() {
        $(this).next(".faq_answer").slideToggle(600);
    });
});