updated for Foundation required nav bar (and removed some very old stuff)
diff --git a/index.php b/index.php
index bdc7a10..02b924b 100644
--- a/index.php
+++ b/index.php
@@ -1,4 +1,5 @@
-<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 	$App 	= new App();	$Nav	= new Nav();	$Menu 	= new Menu();		include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop'
+<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 	$App 	= new App();	
+$Nav	= new Nav();	$Menu 	= new Menu();		include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop'
 
 	#*****************************************************************************
 	#
@@ -21,6 +22,13 @@
 		
 	# Paste your HTML content between the markers!	
 ob_start();
+
+	$Nav->setLinkList( array() );
+	$Nav->addNavSeparator( "Orbit", "/orbit" );
+	$Nav->addCustomNav( "About This Project",
+    "/projects/project_summary.php?projectid=tools.orbit", "", 1  );
+
+
 ?>		
 
 	<div id="midcolumn">
@@ -45,25 +53,12 @@
 			bundling a library that they need (and have approved), please post a message on the 
 			<a href="mailto:orbit-dev@eclipse.org">Orbit</a> mailing list.</p>
 
-		  <p class=bar>What's New</p>
-			<p><b>Oct 16</b> - <img src="http://www.eclipse.org/images/new.gif" width="31" height="14"> 
-				Lucene 1.9.1 added </p>
-			<p><b>Sep 28</b> - <img src="http://www.eclipse.org/images/new.gif" width="31" height="14"> 
-				Several bundles have shown up in the project repo including javax.servlet(.jsp) and Commons Logging.</p>
-			<p><b>Sep 23</b> - <img src="http://www.eclipse.org/images/new.gif" width="31" height="14"> 
-				Orbit is real!</p>
-			<p>&nbsp;</p>
 	</div>
 
 <?php
-	include $_SERVER['DOCUMENT_ROOT'] . "/orbit/global-links.html";
-	include "dir-links.html";
-?>
-
-<?php
 	$html = ob_get_contents();
 	ob_end_clean();
-
+	
 	# Generate the web page
 	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
 ?>