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