var menu={
	initialized: false,
	
	show: function(sub, event){
		sub.addClassName('current');
  	},
	hide: function(sub, event){
		  sub.removeClassName('current');	
	}
};

menu.sub=$$('#menu li.inactive');

menu.sub.each(function(sub){
  sub.observe('mouseover', menu.show.curry(sub));
});
menu.sub.each(function(sub){
  sub.observe('mouseout', menu.hide.curry(sub));
});