// $Id$

var Menu = {
   init : function() {
      Menu.hilight();
   },
   hilight : function() {
      $A(location.pathname.split('/')).each(function(id) {
         var m = $("m_"+id);
         if(m) m.addClassName('current');
      });
      var root = $('m_'+'-');
      if(root) root.addClassName('current');
   }
};
Event.observe(document,'dom:loaded',Menu.init);
