// scroller

var theDiv;
var theDir;
var theSpeed = 100;
function scroll(divId,scrollAmount){
  if(scrollAmount){
    theDiv = document.getElementById(divId);
    theDir = scrollAmount;
  }
  if(theDiv){
    theDiv.scrollTop += theDir;
    setTimeout(scroll, theSpeed);
  }
}




