
$(document).ready(function(){
  $('table.list tbody tr').mouseover(function(){
    $(this).data('color', $(this).css('color'))
           .css('color', '#FFF')
           .find('a')
           .data('color', $(this).css('color'))
           .css('color', '#FFF')  
           .end()
           .find('img')
           .each(function(){
             this.src = this.src.replace(/_normal/, '_hover');
           });
  }).mouseout(function(){
    $(this).css('color', $(this).data('color'))
           .find('a')
           .css('color', $(this).data('color'))  
           .end()    
           .find('img')
           .each(function(){
        	 this.src = this.src.replace(/_hover/, '_normal');
           });
  });
});

