It is recommended that a hidden "Skip to Content" link be included before the site's main navigation, but this one link is usually sufficient.
Users with screenreaders can skip between major headers and subheaders which are tagged H2,H3,H4.
Having a consistent set of links at the top or left side of a document is beneficial for both usability and for people with some mobility impairments as they may not need to move the mouse as far to reach the navigation.
But for users with screen readers, hearing the same list of links at the beginning of each page is time consuming and potentially irritating. Therefore a Skip Navigation strategy should be included to allow users of screen readers to skip over a block of navigational links.
SECTION 508 - A method shall be provided that permits users to skip repetitive navigation links or very long lists of links.
In the first method, an invisible pixel graphic is placed before the navigation with the ALT tag reading "Skip to Content." This is turned into a link which goes to a page-internal link further down the page. Note that the image BORDER should be set to "0" in order to keep the image hidden from visual browsers.
[A Bunch of navigation buttons/tabs]
In visual browsers, the hidden graphic is marked by a blue dot before the "[A Bunch...]" because the border was not set to 0.
<a href="#skip">
<img src="transparent-pixel.gif" alt="Skip Content
" border="0" >
</a >
<!-- DIV tags are used to break the pageinto sections. No formatting is visible unless CSS formatting is applied-->
<div id="navigation">[A Bunch of navigation buttons/tabs]</div>
<div id="content">
<a name="skip" > </a > [Content Starts Here]
</div>
The Web AIM Skip Navigation Page lists some alternatives including making the Skip to Content link visible when a user tabs to it on a keyboard. This allows both motion impaired users and screen reader users to take advantage of it.