In your menucontents.js file you have:
Code:
var anylinkmenu2={divclass:'anylinkmenu', inlinestyle:'width:150px; background:#000000', linktarget:'_parent',} //Second menu variable. Same precaution.
Scroll the code block all the way to the right. See the highlighted red comma near the end? That's a technical syntax error. Most browsers will error correct for it. But IE 8 in quirks mode, and all earlier IE browsers regardless of mode will not error correct it. Get rid of that.
That's the:
"Expected identifier, string or number."
error and it actually comes first. The second one about the divclass is caused by the first. So correct that extra comma by getting rid of it and see what happens.
There could also be other problems. But that will at least get it working.
Bookmarks