You would need to make changes to the javascript for the script to work with an image map. Otherwise, the dropdown menu won't display correctly under the appropriate images.
There's some info here http://www.dynamicdrive.com/forums/a...hp/t-7516.html
The other thing is, your mage map is pretty simple. You might want to use just single images
Code:
<a href="home.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()"><img src="home.gif" style="width:150px; height:50px;border:0;"></a>
<a href="products.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '150px')" onMouseout="delayhidemenu()"><img src="products.gif" style="width:150px; height:50px;border:0;"></a>
Bookmarks