$(document).ready(function (){
	$(".player-row td").hover(function(){
		$(this).parent().stop().animate( { backgroundColor: '#333333' }, 300)
	}, function(){
		$(this).parent().stop().animate( { backgroundColor: 'black' }, 300);
	});
});