
/** scrolls the page to the top (and left) - should be faster than linking to #top */
function scrollToTop() {
	window.scrollTo(0, 0)
}

function scrollToBottom() {
	window.scrollByPages(20);
}