// JavaScript Document
// per box testo evento

step=8   //cambiare velocità scorrimento
timer=null

function scorri_evento(d){
  document.getElementById("evento_scorrevole").scrollTop +=(d==0?-step:step)
  timer=setTimeout("scorri_evento("+d+")",64)
}

function clear_scorri_evento(){
  clearTimeout(timer)
}

