open the index.php of the template around line 145 you will find the code
<div id="ja-pathwaywrap">
<div id="ja-pathway">
<?php mosPathway(); ?>
</div>
</div>
This is the breadcrumb
Above this you would need to add some code like (where user8 is the module position you assigned the menu to)
<div id="ja-yourmenuwrap">
<?php echo mosLoadModules ( 'user8',-2 ); ?>
</div>
You would need to look in the template_css.css file to see what styles the pathwaywrap had associated to it as you would need to use some of these to get the correct positioning of your menu.
Hope this helps.
Kiwidesign