﻿function FAQToggleAnswer(id) {
    FAQHideAllAnswers(id);
    $('#' + id).slideToggle('fast');
}

function FAQHideAllAnswers(id) {
    if (id != null) {
        $('.TestimonialQuote').not('#' + id).slideUp();
    }
    else {
        $('.TestimonialQuote').hide();
    }
}
