Animation is slerky and not smooth

Animation is slerky and not smooth

Hi all,

Is there any way to make a animation very smooth when its duration time is 5 seconds(5000ms) and the image is 900×300 px?

Is this a browser problem or a jquery problem?

my testing ground is:

<script>
$(function() {
    var first = 5000;
    var second = 5000;

    $('div').animate({
        marginLeft:1000
    }, first, function(){
        $(this).animate({
            marginLeft:0
        }, second)
    });
});
</script>
<div style="background:url(images/foto.png);width:920px;height:300px;"></div>

Grtz