Hmm the script doesn't modify the style or position of the anchor links in any way. If "demonstrations" isn't showing up on the page, you'll want to check the link's style or surrounding HTML to see what the culprit is. Looking at the markup for this link:
Code:
<div id="Oobj29">
<div id="Gcode24" class="dfltc">
<!--2nd anchor link-->
<div align="left"> <font face="Arial"><font size="2" class="fsx1">
<p><a href="http://www.tonalproductions.net" class="menuanchorclass" style="color:#ffffff" rel="anylinkmenu2">Demonstrations</a></p></div>
</div>
It seems you're absolutely positioning this link using CSS:
Code:
#Oobj29 {
position: absolute;
font-size: 10px;
z-index: 19;
text-align: left;
left: 31.00em;
top: 12.00em;
width: 11.00em;
height: 12.10em;
}
Try playing around with this CSS to see where the problem lies.
Bookmarks