diff -Naur default_wiki/includes/DefaultSettings.php ittc_wiki/includes/DefaultSettings.php
--- default_wiki/includes/DefaultSettings.php	2005-03-26 19:04:40.339157828 -0600
+++ ittc_wiki/includes/DefaultSettings.php	2005-03-26 19:05:08.183966551 -0600
@@ -859,13 +859,15 @@
  *        http are considered as names of local wiki pages.
  */
 $wgNavigationLinks = array (
-	array( 'text'=>'mainpage',	'href'=>'mainpage' ),
-	array( 'text'=>'portal',	'href'=>'portal-url' ),
-	array( 'text'=>'currentevents', 'href'=>'currentevents-url' ),
-	array( 'text'=>'recentchanges', 'href'=>'recentchanges-url' ),
-	array( 'text'=>'randompage',	'href'=>'randompage-url' ),
-	array( 'text'=>'help', 		'href'=>'helppage' ),
-	array( 'text'=>'sitesupport',	'href'=>'sitesupport-url' ),
+	array( 'text'=>'navigation', 'content'=> array( 
+		array( 'text'=>'mainpage',	'href'=>'mainpage' ),
+		array( 'text'=>'portal',	'href'=>'portal-url' ),
+		array( 'text'=>'currentevents', 'href'=>'currentevents-url' ),
+		array( 'text'=>'recentchanges', 'href'=>'recentchanges-url' ),
+		array( 'text'=>'randompage',	'href'=>'randompage-url' ),
+		array( 'text'=>'help', 		'href'=>'helppage' ),
+		array( 'text'=>'sitesupport',	'href'=>'sitesupport-url' ), ),
+	),
 );
 
 # On category pages, show thumbnail gallery for images belonging to that category
diff -Naur default_wiki/includes/SkinTemplate.php ittc_wiki/includes/SkinTemplate.php
--- default_wiki/includes/SkinTemplate.php	2005-03-26 18:16:53.615371877 -0600
+++ ittc_wiki/includes/SkinTemplate.php	2005-03-26 18:55:43.456326363 -0600
@@ -667,24 +667,30 @@
 		wfProfileIn( $fname );
 		
 		global $wgNavigationLinks;
-		$result = array();
-		foreach ( $wgNavigationLinks as $link ) {
-			$text = wfMsg( $link['text'] );
-			wfProfileIn( "$fname-{$link['text']}" );
-			if ($text != '-') {
-				$dest = wfMsgForContent( $link['href'] );
-				wfProfileIn( "$fname-{$link['text']}2" );
-			    $result[] = array(
-								  'text' => $text,
-								  'href' => $this->makeInternalOrExternalUrl( $dest ),
-								  'id' => 'n-'.$link['text']
-								  );
-				wfProfileOut( "$fname-{$link['text']}2" );
+		$blockResult = array();
+		foreach ( $wgNavigationLinks as $block ) {
+			$blockText = wfMsg( $block['text'] );
+			$result = array();
+			foreach ( $block['content'] as $link ) {
+				$text = wfMsg( $link['text'] );
+				wfProfileIn( "$fname-{$link['text']}" );
+				if ($text != '-') {
+					$dest = wfMsgForContent( $link['href'] );
+					wfProfileIn( "$fname-{$link['text']}2" );
+				    $result[] = array(
+									  'text' => $text,
+									  'href' => $this->makeInternalOrExternalUrl( $dest ),
+									  'id' => 'n-'.$link['text']
+									  );
+					wfProfileOut( "$fname-{$link['text']}2" );
+				}
+				wfProfileOut( "$fname-{$link['text']}" );
 			}
-			wfProfileOut( "$fname-{$link['text']}" );
+			wfProfileOut( $fname );
+			$blockResult[] = array( 'text' => $blockText,
+									'content' => $result );
 		}
-		wfProfileOut( $fname );
-		return $result;
+		return $blockResult;
 	}
 
 	/**
diff -Naur default_wiki/skins/MonoBook.php ittc_wiki/skins/MonoBook.php
--- default_wiki/skins/MonoBook.php	2005-03-26 18:16:53.671355326 -0600
+++ ittc_wiki/skins/MonoBook.php	2005-03-26 19:02:00.328249269 -0600
@@ -114,17 +114,22 @@
 	    title="<?php $this->msg('mainpage') ?>"></a>
 	</div>
 	<script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script>
-	<div class="portlet" id="p-nav">
-	  <h5><?php $this->msg('navigation') ?></h5>
-	  <div class="pBody">
-	    <ul>
-	      <?php foreach($this->data['navigation_urls'] as $navlink) { ?>
-	      <li id="<?php echo htmlspecialchars($navlink['id'])
-	        ?>"><a href="<?php echo htmlspecialchars($navlink['href']) ?>"><?php 
-	        echo htmlspecialchars($navlink['text']) ?></a></li><?php } ?>
-	    </ul>
+    <?php foreach($this->data['navigation_urls'] as $navblock) { ?>
+	  <div class="portlet" id="p-nav">
+	    <h5><?php echo htmlspecialchars($navblock['text']) ?></h5>
+	    <div class="pBody">
+	      <ul>
+	        <?php foreach($navblock['content'] as $navlink) { ?>
+	        <li id="<?php echo htmlspecialchars($navlink['id'])?>">
+              <a href="<?php echo htmlspecialchars($navlink['href'])?>">
+                <?php echo htmlspecialchars($navlink['text']) ?>
+              </a>
+            </li>
+            <?php } ?>
+	      </ul>
+	    </div>
 	  </div>
-	</div>
+    <?php } ?>
 	<div id="p-search" class="portlet">
 	  <h5><label for="searchInput"><?php $this->msg('search') ?></label></h5>
 	  <div class="pBody">
