I see one thing that could cause the menu to not show up. Take a look at the following:
Code:
menu1[0]='<a href="new.html" ONMOUSEOVER="changeImages('new', 'images/new-over.gif'); return true;"
ONMOUSEOUT="changeImages('new', 'images/new.gif'); return true;">
<IMG NAME="new" SRC="images/new.gif" WIDTH=93 HEIGHT=18 BORDER=0 /></A>
<IMG SRC="images/groups_02.gif" WIDTH=57 HEIGHT=18 />'
Should be something like this:
Code:
menu1[0]='<a href="new.html" ONMOUSEOVER="changeImages(\'new\', \'images/new-over.gif\'); return true;"
ONMOUSEOUT="changeImages(\'new\', \'images/new.gif\'); return true;">
<IMG NAME="new" SRC="images/new.gif" WIDTH=93 HEIGHT=18 BORDER=0 /></A>
<IMG SRC="images/groups_02.gif" WIDTH=57 HEIGHT=18 />'
Notice how the single quotes in the second snippet are escaped (with the backslash). As for the menu1 not defined thing, is there a link to the problem page that we could look at. It could be another javascript causing that error or something. Just some suggestions.
Hope this helps.
Bookmarks