


$(document).ready(function() {

    isAuthenticated();


    $("DIV.ContainerPanel > DIV.collapsePanelHeader > DIV.ArrowExpand").toggle(
                function() {
                    $(this).parent().next("div.Content").show("fast");
                    $(this).attr("class", "ArrowClose");
                },
                function() {
                    $(this).parent().next("div.Content").hide("fast");
                    $(this).attr("class", "ArrowExpand");
                });



          

});






