The drop-down part of the Quick Links (menu in your case) is defined at the bottom of the navbar in the area where it says "NAVBAR POPUP MENUS". For the Quick Links drop-down, the comment right above them says "<!-- user cp tools menu -->" There are several 'sections' you could add your link to. What you do really depends on where you want to add it. You could use a template hook (search the articles forums - "template hook" "articles" "titles only") or you could modify the template. If you wanted to modify the template and wanted to add Your Page at yourpage.php between Subscribed Threads and Your Profile, you would do it like this:
Code:
<tr><td class="vbmenu_option"><a href="subscription.php$session[sessionurl_q]" rel="nofollow">$vbphrase[subscribed_threads]</a></td></tr>
<tr><td class="vbmenu_option"><a href="yourpage.php$session[sessionurl_q]" rel="nofollow">Your Page</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[your_profile]</a></td></tr>