// JavaScript Document
/* 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/ */
window.count = 0;
//regola la velocità di scroll
scrollStep=24

timerLeft=""
timerRight=""

function toLeft(id){
  document.getElementById(id).scrollLeft=0
}

function scrollDivLeft(id){
  // alert(window.count)
  window.count += 1;	
  clearTimeout(timerRight) 
  document.getElementById(id).scrollLeft+=scrollStep
  timerRight=setTimeout("scrollDivLeft('"+id+"')",1)
  if(window.count == 10)stopMe();
}

function scrollDivRight(id){
 
  window.count += 1;
  clearTimeout(timerLeft)
  document.getElementById(id).scrollLeft-=scrollStep
  timerLeft=setTimeout("scrollDivRight('"+id+"')",1)
  if(window.count == 10)stopMe();
}

function toRight(id){
  document.getElementById(id).scrollLeft=document.getElementById(id).scrollWidth
}

function stopMe(){
  window.count = 0;	
  clearTimeout(timerRight) 
  clearTimeout(timerLeft)
}


