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