function pageScroll() {
    	window.scrollBy(50,0); // horizontal and vertical scroll increments
    	scrolldelay = setTimeout('pageScroll()',150); // scrolls every 150 milliseconds
}

function pageScrollleft() {
    	window.scrollBy(-50,0); // horizontal and vertical scroll increments
    	scrolldelay = setTimeout('pageScrollleft()',100); // scrolls every 100 milliseconds
}

function stopScroll() {
    	clearTimeout(scrolldelay);
}

function jumpScrollHome() {
   	window.scroll(0,0); // horizontal and vertical scroll targets
}

function jumpScrollServices() {
   	window.scroll(2150,0); // horizontal and vertical scroll targets
}

function jumpScrollSurveys() {
   	window.scroll(1730,0); // horizontal and vertical scroll targets
}

function jumpScrollProfile() {
   	window.scroll(860,0); // horizontal and vertical scroll targets
}

function jumpScrollContact() {
   	window.scroll(3500,0); // horizontal and vertical scroll targets
}

function jumpScrollResources() {
   	window.scroll(3500,0); // horizontal and vertical scroll targets
}