var funTeamListener = function()
{
	$$( '.person' ).addEvents( {
		'click': function()
		{
			window.location = this.getFirst( 'a' ).href;
		},
		'mouseenter': function()
		{
			this.getElements( '.team_name' ).setStyle( 'textDecoration', 'underline' );
		},
		'mouseleave': function()
		{
			this.getElements( '.team_name' ).setStyle( 'textDecoration', 'none' );
		}
	} );
}

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