Flynn - I used to add list items to the Page Menu bar in version 2 of your theme by doing what you see below (I had an "openwindow" javascript method in header.php). Sometimes I wanted to link to an external page and have control over the window that opens. Is this at all possible in version 3?
Code:
<div class="clearfix" id="modernbricksmenu">
<ul>
<li class="page_item"><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?>">Home</a></li>
<?php wp_list_pages('title_li=&depth=1' ); ?>
<li><a href="javascript:openwindow('http://www.url.com','','yes','no','20','20')">Photography</a></li>
</ul>
</div>
I don't see a call to wp_list_pages, but I could be looking in the wrong place.
B