var timer;
function scroll_gallery(direction) {
  if (timer) clearTimeout(timer);
  if (window.frames['content']) {
    window.frames['content'].scrollBy(direction, 0);
    timer = setTimeout("scroll_gallery('" + direction + "')", 20);
  }
}

function stopScroll() { if (timer) clearTimeout(timer); }
