Great theme, but when I uploaded the current version....the menu's would not appear. The problem seems to be on line 24 of the page.tpl.php

<?php print theme('menu_links', $primary_links) ?> 

The menu_links function should be replaced with the Drupal 6 version of the function. Thus the code should be changed to...

<?php print theme('links', $primary_links) ?> 

I made this change and it worked perfectly. Please let me know if I've done something wrong.

Bryan