// JavaScript Document

/* This script and many more are available free online at
3The JavaScript Source!! http://javascript.internet.com
4Created by: Mr J | http://www.huntingground.net/ */

scrollStep=2

timerTop="1"
timerBottom="1"

function toTop(id){
 document.getElementById(id).scrollTop=0
}

function scrollDivTop(id){
clearTimeout(timerBottom)
 document.getElementById(id).scrollTop+=scrollStep
 timerBottom=setTimeout("scrollDivTop('"+id+"')",10)
}

function scrollDivBottom(id){
 clearTimeout(timerTop)
document.getElementById(id).scrollTop-=scrollStep
 timerTop=setTimeout("scrollDivBottom('"+id+"')",10)
}

function toBottom(id){
 document.getElementById(id).scrollTop=document.getElementById(id).scrollWidth
}

function stopMe(){
 clearTimeout(timerBottom)
 clearTimeout(timerTop)
} 
