window.addEvent('domready', function() {
	/********/
	/* Menu */
	/********/
	
	var menuItems = $('menu').getElements('li');
	
	menuItems.each(function(item) {
		item.setStyles({
			'background-color': '#888888'
		});
	});
	
	menuItems.each(function(item) {
		item.addEvent('mouseover', function() {
			var fadeIn = new Fx.Tween(item, {duration: 150}).start('background-color', '#888888', '#555555');
		});
	});
	
	menuItems.each(function(item) {
		item.addEvent('mouseout', function() {
			var fadeOut = new Fx.Tween(item, {duration: 500}).start('background-color', '#555555', '#888888');
		});
	});
	
	/* end */
});