<!--

var timerID = null
var timerRunning = false

function scrollleft(){
	side.window.scrollBy(-3,0);
}

function scrollright(){
	side.window.scrollBy(3,0);
}

function stopscroll(){
	if(timerRunning)
		clearInterval(timerID)
	timerRunning = false
}

function startscroll_left(){
	// Make sure the clock is stopped
	stopscroll()
	timerID = setInterval("scrollleft()",1)
	timerRunning = true
}

function startscroll_right(){
	// Make sure the clock is stopped
	stopscroll()
	timerID = setInterval("scrollright()",1)
	timerRunning = true
}
//-->