I hate that way. What I usually do is:
Find say FAQ in navbar, then below add:
Code:
<td id="projectoptions" class="vbmenu_control"><a href="project.php$session[sessionurl_q]">$vbphrase[project]</a>
<script type="text/javascript"> vbmenu_register("projectoptions"); </script></td>
Then, in the navbar template, at the bottom find:
HTML Code:
<!-- / PAGENAV POPUP -->
</if>
Replace with:
HTML Code:
<div class="vbmenu_popup" id="projectoptions_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead" align="$stylevar[left]"><a href="project.php$session[sessionurl_q]">$vbphrase[project]</a></td></tr>
Then, if you want to add links to it, just add this (repeat each time):
HTML Code:
<tr><td class="vbmenu_option" align="$stylevar[left]"><a href="whatever.php?$session[sessionurl]do=whatever">$vbphrase[whatever]</a></td></tr>
Hope that helps!