            <?php $counter=1; ?>
            <?php foreach($menu_catsRecords as $category): ?>
            <a name="<?php echo $category['num'];?>" id="<?php echo $category['num'];?>"></a>
            <?php if($counter!=1): ?>

            <?php endif?>
            <div class="cat-wrapper">
                  <div class="cat-head"> <span class="l-ribbon"></span>
                <?php if($counter!=1): ?>
                <div class="totop"><a href="#top"><img src="img/icons/134.png" width="16" height="16" /></a></div>            
                <?php endif?>
               
                <h4><?php echo $category['name'];?></h4>
              </div>
                </div>
            <div style="clear:both;">&nbsp;</div>
            <?php if($category['description']): ?>
            <div class="cat-desc"> <?php echo $category['description']; ?> </div>
            <br />
            <?php endif ?>
            <?php $counter++; ?>
            <?php foreach($menu_itemsRecords as $item):?>
            <?php if($item['category']==$category['num']): ?>
            <?php if($item['highlight']): ?>
            <div class="menu-highlight">
                  <?php endif ?>

                  <div class="menu-item">
                <?php if($item['name']):?>
                <h2><?php echo $item['name'];?></h2>
                <?php endif?>
               
                      <?php if($item['description']): ?>
                    <div class="menu-item-desc"> <?php echo $item['description'];?> </div>
                <?php endif ?>
                <?php if($item['price']):?>
                <div class="menu-item-price"> <?php echo $item['price']; ?> </div>
                <?php endif ?>
                
              </div>
                  <?php if($item['highlight']):?>
                </div>
            <?php endif ?>
            <?php endif ?>
            <?php endforeach ?>
            <?php endforeach ?>