(function($) {
    $(document).ready(function() {
        // Expand Panel
        $("#open").click(function(){
            $("div#content-pane").slideDown("slow");
        });

        // Collapse Panel
        $("#close").click(function(){
            $("div#content-pane").slideUp("slow");
        });

        // Switch buttons from "Easy Navigation" to "Close Panel" on click
        $("#toggle a").click(function () {
            $("#toggle a").toggle();
        });
    });
 })(jQuery);
