$(document).ready(function(){
    if($("#admin-panel-visible").size() > 0) {
        var options = { path: '/', expires: 10 };
        if($.cookie("admin-bottom-panel-hide") == 'hide') {
            toggleBottomAdminPanel();
        }
        $("#admin-bottom-panel-show").click(function(){            
            toggleBottomAdminPanel();
            $.cookie("admin-bottom-panel-hide", 'show', options);
            return false;
        })
        $("#admin-bottom-panel-hide").click(function(){
            toggleBottomAdminPanel();
            $.cookie("admin-bottom-panel-hide", 'hide', options);
            return false;
        })        
    }
});
