$(function(){
    
    $("#fond").prepend('<div id="cloudContainer"><div id="cloud"></div></div>');
    
    function animateCloud(){
        $("#cloud").css({backgroundPosition:"0 0"})
            .animate({backgroundPosition:"-2880px 0"},150000,"linear",animateCloud);
    }
    
    animateCloud();
    
});
