


  var speed=25; //This is the speed of scrolling.
  var num=0;
  var bgOb=eval('document.body')
  function scrollBG()
  {
  num++;
  bgOb.style.backgroundPosition="-1"+num;
  }
  setInterval('scrollBG()',speed)

