If you want the images in the tabbed part of the menu, you should be able to insert them here:
HTML Code:
<ul id="tablist">
<li><a href="http://www.dynamicdrive.com" class="current" onClick="return expandcontent('sc1', this)">Dynamic Drive</a></li>
<li><a href="new.htm" onClick="return expandcontent('sc2', this)" theme="#EAEAFF">What's New</a></li>
<li><a href="hot.htm" onClick="return expandcontent('sc3', this)" theme="#FFE6E6">What's Hot</a></li>
<li><a href="search.htm" onClick="return expandcontent('sc4', this)" theme="#DFFFDF">Search</a></li>
</ul>
in place of things like "Dynamic Drive" "What's New" etc. You can add your mouseover/down/out events to the anchor statements (<a href="...etc> just before the closing '>', after the onClick event. If you want images in what is called the tabcontent area, simply substitute them for the text shown there, an anchor with mouse events can be added there too. This is all untested but, looks like it should work fine as long as your images are not so big that they overwhelm the layout. It is all basic HTML, with mouse events added, applied to the existing HTML portion of the menu, shouldn't affect the script or require modifications to the script.
Bookmarks