﻿$(document).ready(function() {
    $('.faq-container .answer').hide();

    $('.faq-container .question').toggle(
		function() {
		    $(this).next().show('fast');
		},
		function() {
		    $(this).next().hide('fast');
		}
	);

    $('.faq-container ul.faq-group').hide();

    $('.faq-container ul.faq-list h2.group-name').toggle(
		function() {
		    $(this).next().show('fast');
		},
		function() {
		    $(this).next().hide('fast');
		}
	);
});
