In your menucontents.js file:
Code:
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''} //First menu variable. Make sure "anylinkmenu1" is a unique name!
anylinkmenu1.items=[
["Table Chatters", "http://www.artnestceramics.com/gallery.html"],
["Earth Wear", "http://www.artnestceramics.com/gallery2.html"],
["Say No to Plastic", "http://www.artnestceramics.com/gallery3.html"],
["New", "http://www.artnestceramics.com/gallery4.html"],
//no comma following last entry!
]
What's wrong with this picture?
Anyways, IE is one of the few, if not the only browser that will not error correct this for you. It should be:
Code:
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''} //First menu variable. Make sure "anylinkmenu1" is a unique name!
anylinkmenu1.items=[
["Table Chatters", "http://www.artnestceramics.com/gallery.html"],
["Earth Wear", "http://www.artnestceramics.com/gallery2.html"],
["Say No to Plastic", "http://www.artnestceramics.com/gallery3.html"],
["New", "http://www.artnestceramics.com/gallery4.html"] //no comma following last entry!
]
Bookmarks