added a redirect to about page to get around the css styling that's inconsistent with the page.
diff --git a/_projectCommon.php b/_projectCommon.php
index 2f27422..90ba000 100755
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -15,9 +15,9 @@
 	# Define your project-wide Nav bars here.
 	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
 	# these are optional
-	$Nav->addCustomNav("Project Home", 			"index.php");
-	$Nav->addCustomNav("About This Project",	"/projects/project_summary.php?projectid=technology.swtbot");
-	$Nav->addCustomNav("Downloads", 			"downloads.php");
+	$Nav->addCustomNav("Project Home", 			"/swtbot/index.php");
+	$Nav->addCustomNav("About This Project",	"/swtbot/about.php");
+	$Nav->addCustomNav("Downloads", 			"/swtbot/downloads.php");
 	$Nav->addCustomNav("Users Guide", 			"http://wiki.eclipse.org/SWTBot/UsersGuide");
 	$Nav->addCustomNav("FAQ", 					"http://wiki.eclipse.org/SWTBot/FAQ");
 
diff --git a/about.php b/about.php
new file mode 100644
index 0000000..edfc0bc
--- /dev/null
+++ b/about.php
@@ -0,0 +1,5 @@
+<?php
+
+header ("Location: /projects/project_summary.php?projectid=technology.swtbot");
+
+?>
\ No newline at end of file