Using the Next and Prev arrow will force the page to bring the new entry to the top, so that user is not looking at the footer of the next/prev item.
jQ171('body').on( "click", "a[href*='#item=']", function( event ) {
$('html, body').animate({
scrollTop: $('#breadcrumb').offset().top - 100
}, 1000);
});