$(document).ready(function() {
    $('ul.expanded-section').hide();
    if (openMenu) {
      $(openMenu).show();
    }    
    $('a.expandable-section').click(function() {
		var clickedLi = $(this).parent();
        var sectionToOpen = $('#' + clickedLi.attr('id') + '-links');
        $.each($('ul.expanded-section:visible'), function() {
            if ($(this).attr('id') != sectionToOpen.attr('id')) {
                $(this).slideUp(750);
            }
        });

        sectionToOpen.slideToggle(750, function() {
          $.post('/cms/modules/setOpenMenu.php', {id: '#' + clickedLi.attr('id') + '-links' });
        });
        return false;
    });
    
    $('li.normal-section a').click(function() {
      $.post('/cms/modules/setOpenMenu.php', {id: '' });
    });
});
