Query("#a1").click(function() {
pagcenter();
jQuery('html, body').animate({
scrollTop: jQuery("#a2").offset().top
}, 1000, 'swing');
});
Query(".page-scroll").click(function() {
pagcenter();
jQuery('html, body').animate({
scrollTop: jQuery( '#' + $(this).data("scrollid") ).offset().top
}, 1000, 'swing');
});
<a href="#test" class="page-scroll" data-scrollid="a1">test</a>
<h3 id="test" data-scrollid="a1">test</h3>