With difficulty you can add as many custom codes as you like. By replacing the suckerfish() function in your theme with the following for example would display a list of pages, then a custom coded link to Yahoo!, then your archives, then a link to Google, then a list of your categories.
[code:zfv6dcvu]<ul id="suckerfishnav">
<?php wp_list_pages(‘title_li=’); ?>
<li><a href="http://yahoo.com/">Yahoo!</a></li>
<li><a href="#">Archives</a>
<ul>
<?php wp_get_archives(); ?>
</ul>
</li>
<li><a href="http://pixopoint.com/">Google</a></li>
<li><a href="#">Categories</a
<ul>
<?php wp_list_categories(‘title_li=’); ?>
</ul>
</li>
</ul>[/code:zfv6dcvu]
If you would like specific help in setting something like this up for your own site, then feel free to leave a post in the ‘Premium Members’ board and I’ll help put together some code suitable for your particular site.