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