For my suggestion, open up your
navbar template, find:
HTML Code:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
Below it, add:
HTML Code:
<td id="interactive" class="vbmenu_control"><a href="#interactive">Interactive</a> <script type="text/javascript"> vbmenu_register("interactive"); </script></td>
At this point, remove the additional links from the navbar - they should be located around the same area.
Still in your
navbar template, find:
HTML Code:
<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->
Below it, add:
HTML Code:
<!-- interactive links -->
<div class="vbmenu_popup" id="interactive_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Interactive Features</td></tr>
<tr><td class="vbmenu_option"><a href="#">Feature #1</a></td></tr>
<tr><td class="vbmenu_option"><a href="#">Feature #2</a></td></tr>
<tr><td class="vbmenu_option"><a href="#">Feature #3</a></td></tr>
<tr><td class="vbmenu_option"><a href="#">Feature #4</a></td></tr>
</table>
</div>
<!-- / interactive links -->
Now replace those Feature links with the additional links that you want..