﻿$(document).ready(function () {
    $(".expandable_content").hide();

    $(".expandable_header").live("click", function () {
        var itemid = $(this).attr("cmsid");
        if ($('[contentfor="' + itemid + '"]').css("display") == "none") {
            $(this).find(".expandable_header_text").addClass("open");
            $('[contentfor="' + itemid + '"]').show();
        } else {
            $(this).find(".expandable_header_text").removeClass("open");
            $('[contentfor="' + itemid + '"]').hide();
        }


    });
});
