Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.
There's 3 errors in your JavaScript code. First:
Code:
menu5[2]='<a href="http://nipple-huggers.com/Anthonys-Staff-Stiff.html">Anthony\'s Staff is Stiff...</a>'
You need to add the backslash in ("\"), since your text contains an apostrophe (a reserved word in JS).
Then, look at:
Code:
//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a href="http://nipple-huggers.com/LadiesSingles.html">Nipple Dangles I</a>'
menu2[1]='<a href="http://nipple-huggers.com/LadiesSingles1.html">Nipple Dangles II</a>'
menu2[2]='<a href="http://nipple-huggers.com/LadiesSingles2.html">Nipple Dangles III</a>'
menu2[3]='<a href="http://nipple-huggers.com/LadiesSingles3.html">Nipple Dangles IV</a>'
menu2[4]='<a href="http://nipple-huggers.com/LadiesSingles4.html">Nipple Dangles V</a>'
menu2[5]='<a href="http://nipple-huggers.com/LadiesSingles5.html">Nipple Dangles VI</a>'
menu2[6]='<a href="http://nipple-huggers.com/LadiesSingles6.html">Nipple Dangles VII</a>'
menu2[7]='<a href="http://nipple-huggers.com/LadiesSingles7.html">Nipple Dangles VIII</a>'
menu2[8]='<a href="http://nipple-huggers.com/LadiesSingles8.html">Nipple Dangles IX</a>'
menu2[9]='<a href="http://nipple-huggers.com/LadiesSingles9.html">Nipple Dangles X</a>'
//Contents for menu 3, and so on
var menu3=new Array()
You had "menu2" and "menu3" reversed when you defined them. The code in red corrects this.
FYI there's also Anylink CSS menu, which lets you define your menu items as plain HTML. Might be easier if you're having a hard time working with JavaScript.
Bookmarks