Use this to offset anchor links. Reasons for this might include using a fixed navigation bar that will cover part of the section you are loading.
Add a class to your anchor.
‹a class="anchor" id="top"›‹/a›
Now apply the offset script.
a.anchor {
display: block;
position: relative;
top: -90px;
visibility: hidden; }
