Display custom Menu

<ul id=”nav”>

<li><a href=”<?php echo $this->getUrl(‘home’)?>”><?php echo $this->__(‘Home’) ?></a></li>

<?php foreach ($this->getStoreCategories() as $_category): ?>

<?php echo $this->drawItem($_category) ?>

<?php endforeach ?>

<li><a href=”<?php echo $this->getUrl(‘aboutus’)?>”><?php echo $this->__(‘About Us’) ?></a></li>

<?php echo $_menu ?>

<li><a href=”<?php echo $this->getUrl(‘faq’)?>”><?php echo $this->__(‘FAQ’) ?></a></li>

<li><a href=”<?php echo $this->getUrl(‘checkout’)?>”><?php echo $this->__(‘Checkout’) ?></a></li>

<li><a href=”<?php echo $this->getUrl(‘contactus’)?>”><?php echo $this->__(‘Contact Us’) ?></a></li>

</ul>