Hi Gwiffy
You could replace the auto navigation with your own un-ordered lists
if you like. Open up index.php and goto line 191:
<?php build_navigation(); ?>
remove this line and simply insert your own list of items eg:
<ul>
<li id="link1"><a href="<?php print createURL("link1");?>"
title="link1">Link1</a></li>
<li id="link2"><a href="<?php print createURL("link2");?>"
title="link2">Link2</a></li>
<li id="link3"><a href="<?php print createURL("link3");?>"
title="link3">Link3</a></li>
</ul>
the createURL() function will ensure your links work on both your
local server and remote server.
Hope that helps
Scott