+$(function() {
+ function scrollToAnchor(anchor) {
+ if (anchor) {
+ var element = $('a[name="' + anchor.slice(1) + '"]');
+ if (element.length > 0) {
+ $.scrollTo(element, 500, {offset: {top: -50, left: 0}});
+ $(element).highlightFade('yellow');
+ window.location.hash = anchor;
+ }
+ }
+ }