// window.addEvent('domready', function() {topMenuHovers();});

function topMenuHovers() {
	$$('ul#top_menu>li').addEvents({  // this gets all li tags inside the ul node with ID 'top_menu'
		mouseover: function(){this.className="hover";},
		mouseout: function(){this.className="";}
	});
}