window.addEvent('domready', function() {
 $$('#mainmenu li').each(function(n) {
 n.addEvents({
  'mouseover' : function(t) {
  t.oldColorLi = t.getStyle('color');
  t.oldColorSpan = t.getChildren('a').getChildren()[0].getStyle('color');
  t.setStyle('color', '#000000');
  t.getChildren('a').getChildren()[0].setStyle('color', '#990033');
 }.pass([n]),
  'mouseout' : function(t) {
  t.setStyle('color', t.oldColorLi);
  t.getChildren('a').getChildren()[0].setStyle('color', t.oldColorSpan);
 }.pass([n])
 });
});
});
