jQuery(setupSiteTabs);
//$(setupSidebarMenu);

function setupSiteTabs() {
   jQuery('.subsite_item td').hover(
      function () {
         this.style.backgroundPosition = '0 0';
      },
      function () {
         this.style.backgroundPosition = '0 90px';
      }
   );
}

function setupSidebarMenu() {
   jQuery('.directory, .active').click(function () {
      jQuery(this).toggleClass('active').next().toggle();
      return false;
   });
}