$(document).ready(function(){
    if (1==$(".faq").length) {
        $(".faq .question").click( function(){
            $(this).next("div.answer").slideToggle("slow");
            $(this).parent(".item").toggleClass("close");
            $(this).siblings(".item").removeClass("close");
        });
    }
});