var deltax=0;
function RotateBaner()
{
        deltax = deltax + 1;
        document.getElementById("topbanner").style.backgroundPosition = deltax + "px 0px";
}
function Init()
{
        window.setInterval( 'RotateBaner()', 25);
}
