I forgot to add this code into the file because my site was coded a little different.
function scrollToAnchor(aid){
var aTag = $("#"+ aid +"");
var wWidth = $(window).width();
var wHeight = $(window).height();
topMargin = wHeight/2 - aTag.height()/2;
$('html,body').animate({scrollTop: aTag.offset().top - topMargin},'slow');
}
$(".scroll_to").click(function() {
var scrollId = $(this).attr('id');
scrollToAnchor('scroll_to_'+scrollId);
});
That just needs to be included for the smooth scroll on the quick links. I had this built into another file and forgot it needs to be in this as well.