Here, in the menucontents.js file:
Code:
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''} //First menu variable. Make sure "anylinkmenu1" is a unique name!
anylinkmenu1.items=[
["Who We Are", "about_who.html"],
["Management Team", "about_team.html"],
["Photos", "about_photos.html"],
["Careers", "about_careers.html"],
//no comma following last entry!
]
Get rid of that red comma. Strict rules say no comma after the last item in an array. Most browsers error correct for this nowadays. IE started with IE 9. IE 8 is throwing an error because it's trying to create the markup for the next entry, but none is there, no text or link specified.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks