You need to edit the navbar template:
Find this line:
Code:
<td class="vbmenu_control"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
Delete it:
Find this line:
Code:
<tr><td class="thead">$vbphrase[quick_links]</td></tr>
That is the start of the Quick Links menu
Look where you want to add the FAQ link and then add:
Code:
<tr><td class="vbmenu_option"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td></tr>
Then just repeat that for the other links you want to move.
(The key changes are to add <tr> </tr> around the link and to change the type of link from "vbmenu_control" "vbmenu_option" )
(I've not tested this.)