Well hey, what do you know.. I got this working after all.
I first created a new theme uploaded the different sections header sidebar footer and the CSS and images.
I'm sure there is more than one way to accomplish what I was after but I got my menus dynamically created effect using pages and subpages..
Here's the Sidebar script
Code:
<div id="main_content_right">
<ul id="right_nav">
<?php
if(wp_list_pages("child_of=".$post->ID."&echo=0")) {
wp_list_pages("title_li=&child_of=".$post->ID."&sort_column=menu_order&show_date=modified&date_format=$date_format");
}
else {
wp_list_pages("title_li=&child_of=".$post->post_parent."&sort_column=menu_order&show_date=modified&date_format=$date_format"); }
?>
</ul>
</div>
Well this has been a very interesting learning experience, thanks for the direction Derek. 
I like Wordpress!
Bookmarks