// Simple scrolling for the More_Images overlay

function scrollDivLeft(id){
  // clearTimeout(timerRight) 
  // document.getElementById(id).scrollLeft+=scrollStep
  // timerRight=setTimeout("scrollDivLeft('"+id+"')",120)
  document.getElementById(id).scrollLeft+=128
}

function scrollDivRight(id){
  // clearTimeout(timerLeft)
  // document.getElementById(id).scrollLeft-=scrollStep
  // timerLeft=setTimeout("scrollDivRight('"+id+"')",120)
  document.getElementById(id).scrollLeft-=128
}


