// JavaScript Document
var pos=0, speed=50; 
window.onload=function() {scrollIt(); }



function scrollIt() {

document.getElementById('scroller').style.backgroundPosition='0px ' + pos +'px';
pos--;  // specifies left / right or top / bottom.
setTimeout('scrollIt()',speed);
 }
