function initSidebarMenu()
{
  $('ul.sidebarMenu ul').hide();

  $.each($('ul.sidebarMenu'), function(){
    //$('#' + this.id + '.expandfirst ul:first').show();
    $('#' + this.id + ' .active ul').show();
    $('#' + this.id + ' li ul li.active').parent().show();
  });

  $('ul.sidebarMenu li a').click(function() {
    var checkElement = $(this).next();
    var parent = this.parentNode.parentNode.id;
    if($('#' + parent).hasClass('noaccordion')) {
      $(this).next().slideToggle('normal');
      return false;
    }
    if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
      if($('#' + parent).hasClass('collapsible')) {
        $('#' + parent + ' ul:visible').slideUp('fast');
      }
      return false;
    }
    if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
      $('#' + parent + ' ul:visible').slideUp('fast');
      checkElement.slideDown('normal');
      return false;
    }
  });
}
