// when the DOM is ready...
$(document).ready(function () {
	
	

	
	  
      $('tr.player').hover(function() {

		$(this).find('img[src*=1]').fadeIn();


      }, function() {

        $(this).find('img[src*=1]').fadeOut();

      });


	    
    
    
    
	});