Instead of the default UL list menu as the main menu items, you're free to replace it with just image links instead. The key is just to remove the rel="" attribute inside each menu link into the image's A element instead, for example:
Code:
<div id="mytabsmenu" class="tabsmenuclass">
<a href="#" rel="gotsubmenu[selected]"><img src="dd1.gif" /></a> <a href="#" rel="gotsubmenu"><img src="dd2.gif" rel="gotsubmenu" /></a> <a href="#"><img src="dd3.gif" /></a>
</div>
<div id="mysubmenuarea" class="tabsmenucontentclass">
<!--1st link within submenu container should point to the external submenu contents file-->
<a href="submenucontents.htm" style="visibility:hidden">Sub Menu contents</a>
</div>
<script type="text/javascript">
//mouseovertabsmenu.init("tabs_container_id", "submenu_container_id", "bool_hidecontentsmouseout")
mouseovertabsmenu.init("mytabsmenu", "mysubmenuarea", true)
</script>
As far as showing a description instead of a row of links, simply replace the sub menu contents inside submenucontents.htm with what you wish to show.
Bookmarks