x=1;
i=1;

function move()
{
  if(!document.getElementById){return;}
  document.getElementById('panorama').style.backgroundPosition = x*i+'px 0px';
  setTimeout('move()',20);
  i++;
}
window.onload = move;
