<!-- Copyright 2002 Bontrager Connection, LLC

// Customization is 5 steps.

// Step 1
// How deep, in pixels, is your display area?
// They number you type here will determine how far 
//   the window will scroll before it jumps up to the 
//   top and starts over.
// This may take some trial and error.
// If the number is too small, the scrolling will start 
//   over before it gets to the bottom of the page. If 
//   the number is too large, the scrolling will pause 
//   at the bottom of the page for the length of time 
//   it would have taken to scroll that far.

var Depth = 2000;


// Step 2
// How many milliseconds (1000 milliseconds per second) 
//   shall elapse before scrolling begins?
// The larger the number, the longer the elapsed time 
//   between page load and scroll begin.

InitialPause = 1000;


// Step 3
// How many milliseconds (1000 milliseconds per second) 
//   pause between scrolling increments?
// The larger the number, the slower the scroll.

var IncrementPause =40;


// Step 4
// What distance, in pixels, should each scrolling 
//   increment be?
// The smaller the number, the smoother the scroll.

var IncrementDistance = 1;


// Step 5
// How many pixels from the top of the page shall the 
//   first scroll begin at?
// (This would usually be 0 for top of page.)

var StartAtPosition = 0;


//
// No further customizations required.
//

if(InitialPause      < 1) { InitialPause      = 1; }
if(IncrementPause    < 1) { IncrementPause    = 1; }
if(IncrementDistance < 1) { IncrementDistance = 1; }
if(StartAtPosition   < 1) { StartAtPosition   = 0; }
var DisplayAtPosition = StartAtPosition;
var Scroll = 'yes';
var S;
function Scroller() {
	if(Scroll == 'yes') {
		DisplayAtPosition += IncrementDistance;
 		window.scroll(0,DisplayAtPosition);
	}
	else
	{
		window.scroll(0,0);
		DisplayAtPosition = 0;
		Scroll = 'yes';
	}
	if(DisplayAtPosition > Depth) { Scroll = 'no'; }
	S = window.setTimeout('Scroller()',IncrementPause)
}	
window.setTimeout('Scroller()',InitialPause);
//-->
