//Sidebar Accordion Menu:
jQuery(function () {
    jQuery('#firstpane > ul > li ul').hide(); // Hide all sub menus
    jQuery('#firstpane > ul > li.active > ul').show(); // Slide down the current menu item's sub menu
    jQuery('#firstpane > ul > li.submenu > div > a').click( // When a top menu item is clicked...
        function () {
            jQuery(this).parents('li').siblings().find('ul').slideUp('normal'); // Slide up all sub menus except the one clicked
            jQuery(this).parent().next().slideToggle('normal'); // Slide down the clicked sub menu
            return false;
        }
    );
});
