window.addEvent('domready', function() {

	//Main Menu	
	$$('li.page_item').addEvents({
		'mouseenter': function(){
			this.setStyle('background-color', '#4DC4FF');
		},
		'mouseleave': function(){
			this.morph({'background-color': '#000000'});
		}
	});
	

});
