//

$(document).ready(function()
{
    $(".expandQuestion").click(function()
    {
        var id = $(this).attr("rel");
        var obj = $("#" + id);
        if (obj.attr("expanded") != "true")
        {
            obj.attr("expanded", "true");
            obj.css("display", "block");
            $(".expandQuestion[rel='" + id + "'] img").attr("src", "images/glyphs/arrow_down.gif");
        }
        else
        {
            obj.attr("expanded", "false");
            obj.css("display", "none");
            $(".expandQuestion[rel='" + id + "'] img").attr("src", "images/glyphs/arrow_right.gif");
        }
        return false;
    });

});
