function movebackground(x) { 
var obj = document.getElementById('horizontalscroll'); 
obj.style.backgroundPosition = ""+x+"px 0px"; 

// x-1 moves it left, x+1 moves it right
setTimeout("movebackground("+(x-1)+")", 100); 
}