I have created three menus but the ones in the sub templete do not show up

I am using one of the original menus but then I created two addy ones to go in the subtemplate at location of my choosing.
In the function php I have

if ( function_exists('register_sidebars') )
register_sidebars(2);


if ( function_exists('register_nav_menus') ){
register_nav_menus(
	array(
	'engineers' => 'engineerMenu',
	'aboutCdi' => 'aboutUs',
	)
);}

in the page w/the html/php i have:

<?php get_sidebar( 'aboutUs.php' ); ?>

And lastly i went to the wp-admin area and in the menu section I have the theme location menu actives, the menu correctly name and saved…
but the two menus I created do not show up.

Any suggestions on what I could have done wrong?
thx
D

never mind.
fixed it.
used:
<?php include (TEMPLATEPATH . ‘/engineering.php’); ?>