Hello John,
Thanks for the fast response.
I had someone host a "dummy" page of sorts for me, with generic content. For whatever reason, the fake pictures aren't displaying (I'm guessing he didn't change the links), so I'm hoping this will help. Here's the link:
http://www.11fifty.com/Site_108/before.html
There isn't any Javascript to control the scrolling in that page. I've pasted the coding (or links to) for the various attempts at "fixing" this problem below.
If you need more than is given so far, please let me know! 
First attempt - this had no effect:
http://jsfiddle.net/MMM717/w96Hu/
(the above was modified from the original in the next link, to replace the "bar" code, since I already had a fixed header):
http://jsfiddle.net/bpMCE/
Second attempt - this caused the page to keep jumping back up upon successive "page" button releases:
Code:
var MyHeight = window.innerHeight - 232;
window.addEventListener('keyup', function (e) {
if (e.keyCode === 34) {
window.scrollTo(0,MyHeight);
}
}, false);
...and a variation on that, with basically the same results
Code:
var MyHeight = window.innerHeight - 0;
window.addEventListener('keyup', function (e) {
if (e.keyCode === 34) {
window.scrollTo(0,450);
}
}, false);
Last attempt - a simple piece of code I found, that may not have been appropriate - it didn't help...:
Code:
$(document).scrollTop($(document).scrollTop()+$(window).height());
Bookmarks