original reference: https://codepen.io/rnr/pen/dMNZmx
secondary reference to jump down to page section: https://stackoverflow.com/questions/6682451/animate-scroll-to-id-on-page-load
$('.nav-tabs a').click(function (e) {
$(this).tab('show');
window.location.hash = this.hash;
$("html, body").delay(1000).animate({scrollTop: $(hash).offset().top }, 2000);
});