Basically, the key knowledge you need to possess is how to get one event handler (ie: onMouseover) to run more than 1 function simultaneously. The default anchor link for a drop down menu looks like this:
Code:
<a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Web Design</a>
Notice the "onMouseover/ onMouseout" event handlers added inside the link. You want to transfer these event handlers into your button HTML code instead. Since that code also uses the "onMouseover/ onMouseout" event handlers, the key is to combine the codes that should be run inside each event handler. This is done by separating each code to run by a semicolon. You end up with something like the below:
Code:
<img border="0" id="img1" src="buttonB8.jpg" height="33" width="100" alt="Button Text" onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'buttonB9.jpg'); dropdownmenu(this, event, menu1, '150px')" onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'buttonB8.jpg'); delayhidemenu()" onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'buttonBA.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'buttonB9.jpg')" fp-style="fp-btn: Metal Tab 5" fp-title="Button Text">
Bookmarks