


$(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");
        });



    $(".popup a").hover(function() {
        $(this).next("em").stop(true, true).animate({ opacity: "show", top: "-50" }, "slow");
    }, function() {
        $(this).next("em").animate({ opacity: "hide", top: "-60" }, "fast");
    });



});






