// JavaScript Document

function scrollDivDown(id, speed) {
	clearTimeout(timerDown);
	document.getElementById(id).scrollTop += speed;
	timerDown = setTimeout("scrollDivDown('"+id+"', "+speed+")",1);
}

function scrollDivUp(id, speed) {
	clearTimeout(timerUp)
	document.getElementById(id).scrollTop -= speed;
	timerUp = setTimeout("scrollDivUp('"+id+"', "+speed+")",1);
}

timerDown = '';
timerUp = '';

function stopMe() {
	clearTimeout(timerDown);
	clearTimeout(timerUp);
}

//document.onmousemove = function(){ stopMe() } 
