﻿function faq_item_click() {
    if ($(this).parent().children("div").css("display") == "none")
        $("ul.faq div").hide("fast");
    $(this).parent().children("div").toggle("fast");
}

$("ul.faq div").css("display", "none");
$("ul.faq h4").css("cursor", "pointer");
$("ul.faq h4").bind("click", faq_item_click);
