function animate_background()
{
    $('div.back_layer')
    .css( {backgroundPosition: "0px 0px"} )
    .animate(
        {backgroundPosition: "-1600px 800px"},
        {duration:180000, complete: animate_background, easing: 'linear'}
    );
}

$(function() {
    animate_background();
});
