$$('.menu-top table td').each(function(d){
	d.addEvent('mouseover', function(){
		this.addClass('over');
	}).addEvent('mouseout', function(){
		this.removeClass('over');
	});
})