This should work, I just added one on mine to test it, I post up what I put in since I haven't edited the links yet.
I just added the second one right after the first, you just need to change the 1's to 2's.
Code:
<!-- dropdown start -->
<td id="1" class="vbmenu_control"><a href="#1">Drop down</a>
<script type="text/javascript"> vbmenu_register("1"); </script></td>
<!-- dropdown end -->
<!-- dropdown start -->
<td id="2" class="vbmenu_control"><a href="#2">Drop down 2</a>
<script type="text/javascript"> vbmenu_register("2"); </script></td>
<!-- dropdown end -->
Same with the other code, you need to change the 1 to a 2 in the vbmenu_popup id. Mine broke the forumhome too, but I realized i was missing a closing div tag, but the way I have it here it all works on my site.
Code:
<!-- / nav2 buttons bar -->
<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->
<!-- extras pop start -->
<div class="vbmenu_popup" id="1_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">Drop Down</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
</table>
</if>
</div>
<if condition="$show['popups']">
<div class="vbmenu_popup" id="2_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">Drop Down</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="link">link</a></td>
</tr>
</table>
</if>
</div>
<!-- extras pop end -->
Then