window.addEvent('load', function()
{
	$('services').getElements('a').each(function(item){
		item.addEvent('mouseover', function(){
			$(this.rel).className = 'selected';
		});
		item.addEvent('mouseout', function(){
			$(this.rel).className = '';
		});
	});
});
