<!-- // JavaScript Document


var xfinalPosition = 0; // do not need to edit this number
var yfinalPosition  = 1850; // enter the number of pixels you would like to scroll the page

var xIncrements = 0; // do not need to edit this number
var yIncrements  = 10; // for smooth scrolling decrease number, for fast scrolling increase number

var scrollMilliseconds = 20; // for fast scrolling decrease number, for slow scrolling increase number

var scrollTimes = yfinalPosition / yIncrements; // do not need to edit this line

function pageScroll() {
    	window.scrollBy(xIncrements,yIncrements); // horizontal and vertical scroll increments
}

function stopScroll() {
	clearTimeout(scrolldelay);
	clearTimeout(scrolldelays);
}

function targetScroll() {
		window.scroll(xfinalPosition,yfinalPosition); // horizontal and vertical scroll targets
}

var i = 0;
function someScroll() 
{
	if (i<=scrollTimes)
	{
    scrolldelay = setTimeout('pageScroll()',scrollMilliseconds); // scrolls every 100 milliseconds	
	scrolldelays = setTimeout('someScroll()',scrollMilliseconds); // calls itself every 100 milliseconds
	i++;
	}
	else
	{
	stopScroll();
	targetScroll();
	i=0; // reset counter in case it is called again
	}
}
// -->
