Strange animation problem.

Strange animation problem.

Hello.
I have some problem:

function run(){
$('#back').animate({left: '+=500'}, 5000, function() {
$('#back').animate({left: '-=500'}, 5000, run());   // *
});
};
run();
*At first iteration animation in this line isn't work. 

Why?