var Timer;
function ScrollLeft()
{
  Timer = setInterval("document.getElementById('BOOKSLIDER').scrollLeft -= 2", 15);
}
function ScrollRight()
{
  Timer = setInterval("document.getElementById('BOOKSLIDER').scrollLeft += 2", 15);
}

function clearTimer()
{
  clearInterval(Timer);
}