var people;



function onLoad() {

	

	people = ['.mike-housley', '.shane-redding', '.steve-kemish', '.debbie-williams', '.sarah-leatherbarrow','.simon-daniels'];

	

	$$(people.join(',')).addEvent('mouseenter', function(person) { 

		personRollOver(person.target.getProperty('class'));

	});



	$$(people.join(',')).addEvent('mouseleave', function(person) { 

		personRollOut(person.target.getProperty('class'));

	});

	

}



function personRollOver(person) {	

	

	$ES(people.copy().remove('.' + person).join(','), 'team').setOpacity(0.4);

	$$('a.' + person).setStyle('color','#00adef');



}



function personRollOut(person) {

	

	$ES(people.join(','), 'team').setOpacity(1);

	$ES('a.' + person).setStyle('color','#9B9D9F');



}



window.addEvent('load', onLoad);