Custom Menus WIP

To create custom menus, declare in PHP them use in templates
<br />
// PHP<br />
// example register a custom menu.<br />
// note: example of menu display in tf_examples.php</p>
<p>// turn this on to activate<br />
//add_action( 'init', 'register_menus' );<br />
function register_menus() {<br />
        add_theme_support( 'nav-menus' );<br />
        register_nav_menu ('join_menu', __('Join Us Menu'));<br />
}<br />