window.addEvent('domready', function(){
	$$('table.playerListDisplay tr').each(function(el) {
		el.addEvent('mouseover', function() { el.getChildren().each(function(obj) { obj.toggleClass('hover'); }); });
		el.addEvent('mouseout', function() { el.getChildren().each(function(obj) { obj.toggleClass('hover'); }); });
	});
});
