By looking at your page, as far as I can tell the script is working fully actually. The menu links do open in the same window as the menu itself. The reason why they are broken links then is simply due to the way you've defined their URLs inside menucontents.js. Take the first drop down menu for example, which draws from the following chunk of code:
Code:
var anylinkmenu4={divclass:'anylinkmenu', inlinestyle:'width:225px; background:#ced9e2', linktarget:''} //Second menu variable. Same precaution.
anylinkmenu4.items=[
["Achievement Gap", "achievementgap.html/"],
["School Turnaround Nationally", "stnationally.html/"],
["School Turnaround in Massachusetts", "stma.html/"],
["School Turnaround in the News", "stnews.html/"] //no comma following last entry!
]
The first link "achievementgap.html/" when fully constructed translates to http://www.cviscusi.com/UnlockingPot...ementgap.html/, which is a broken link. You should take out the trailing "/" in all of your links inside menucontents.js
Bookmarks