@kjemperud
I posted this little snippet of info earlier this evening:
One very simple way to create your own navigation is to hard code
it into the root index.php file. On line 189 replace:
<div id="navigation">
<?php build_navigation(); ?>
</div>
with
<div id="navigation">
<li id="nav_home"><a href="/home/" title="Home">Home</li>
<li id="nav_blog"><a href="/blog/" title="Blog">Blog</li>
<li id="nav_google"><a href="
http://www.google.co.uk"
title="Google">Google</li>
</div>
etc. I have done this a number of times and used CSS to indicate which
nav section I am on (e.g. .s_home #nav_home { background: red; })
You could use this methid to create multi-levels of navigation with
nested <ul>'s.
As Christopher suggests you can also use the blocks as a sort of sub
navigation - you can see this in action on any dynamic page with the
dynamic_nav block added. Investigate the /admin/blocks/
block_dynamic_nav.php file to see how this works.
Scott