This question is bit specific for Joomla.
I have a main menu consisting of:
Home|About US|Privacy Policy|Portfolio|Contacts US.
Each menu it
Isn't it easier to create a new menu containing two aliases to the menus you want then load them anywhere on the website using {loadposition}
or whatever?
<?php
$menuitemid = JRequest::getInt( 'Itemid' );
if ($menuitemid)
{
$menu = JSite::getMenu();
$menuparams = $menu->getParams( $menuitemid );
$params->merge( $menuparams );
}
$propvalue= $params->get('property_name');
?>
I think you should create a new menu in joomla then make aliases type of menu items, you should do this to make sure you don't get duplicate content issues. I think Alex answer is ok if you want to do it with code but its harder to maintain and for someone to understand who comes along. As it is a menu item it doesn't belong in a component or module in my opinion.