backgroundPosition plugin callback

backgroundPosition plugin callback

Hi there, I'm trying to repeat the effect for the other tr    inside the callback function  after the effect finishes for the current tr                                                                                                                                                           $('tr:eq(0)')
    .css( {backgroundPosition: "0 0"} )
    .stop().animate({backgroundPosition:"(-1950px 0)"}, {duration:1500, complete:function(){
               
                   //repeat the above for the other rows after the effect finishes
            
    }})
    Any ideas?