Yes. It would help if you understood the use of named anchors but, that is pretty simple. You are probably used to seeing linked anchors:
HTML Code:
<a href="somepage.htm">Some Page</a>
If you click on this it will take you to somepage.htm if it is available. A named anchor is like so:
HTML Code:
<a name="news"></a>News:
Notice that the text can (and often should) be outside of the tag. This anchor is not for clicking on but, for navigating to. It's URL is the page name plus:
#news
If the link to it is on the page, #news is all you need.
Getting back to your question, if you have a named anchor like that on your page, you can edit the ssmItems.js file to link to it:
Code:
ssmItems[1]=["News", "#news", ""]
Clicking on the News link in the menu will scroll the page so that the:
HTML Code:
<a name="news"></a>News:
anchor is in view.
One thing to keep in mind, if the anchor is already in view, the page may jump a little or do nothing. The only time this does anything reliable is when the named anchor isn't visible in the window when the link to it is clicked.
Bookmarks