window.addEvent('domready', function() {

	$$('#menu li').each(function(element) {
		element.addEvent('mouseover', function() {
			$$('#menu li').each(function(otherelement) {
				otherelement.removeClass('over');
			});
			element.addClass('over');
		});

	});

});