﻿$(document).ready(function() {
// Your JQuery code starts here


    // Q&A jquery script
    $(".question").click(
        function(event) {
            if ($(this).next(".answer").is(":visible")) {
                $(this).next(".answer").slideUp(); // hide-toggle this question's answer
            }
            else {
                $(".answer").slideUp(); // hide everyone else's answer
                $(this).next(".answer").slideDown(); // show this question's answer
            }
        }
    );


// Your JQuery code ends here
});
