/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Mr J | http://www.huntingground.net/ */

scrollStep=83


function toLeft(id){
  document.getElementById(id).scrollLeft+=scrollStep
}


function toRight(id){
  document.getElementById(id).scrollLeft-=scrollStep
}


