<!-- sidebar

initSidebar = function() {
  $('#menuprincipale span').each(function() {
    var relAttribute = String(this.getAttribute('rel'));
    if (this.id && (relAttribute.toLowerCase().match('menugroup'))) {
      $('#sub'+this.id).hide();

      this.style.cursor = 'pointer';
      this.onclick = function() {toggleSidebar(this)};
    }
  });
}

var openid = '';

toggleSidebar = function(obj) {
  if (openid != '') {
    $('#'+openid).removeClass('selezionato');
    $('#sub'+openid).slideUp('fast');;
  }

  if (openid != obj.id) {
    openid = obj.id;
    $('#sub'+openid).slideDown('fast');;
    $('#'+openid).addClass('selezionato');
  } else {
    openid = '';
  }
}

$(document).ready(function() { initSidebar() });

// -->
