added description text for the about page.
diff --git a/description.php b/description.php
new file mode 100644
index 0000000..604960c
--- /dev/null
+++ b/description.php
@@ -0,0 +1,36 @@
+<?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());
+
+ $pageTitle = "SWTBot – UI Testing for SWT and Eclipse";
+
+ # Add page-specific Nav bars here
+ # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+ # $Nav->addNavSeparator("My Page Links", "downloads.php");
+ # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
+ # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
+
+ # Paste your HTML content between the ob_start/ob_end_clean markers!
+ ob_start();
+?>
+
+<div id="maincontent">
+ <div id="midcolumn">
+ <p>SWTBot is a Java based UI/functional testing tool for testing SWT and Eclipse based applications.</p>
+ <p>SWTBot provides APIs that are simple to read and write. The APIs also hide the complexities involved with SWT and Eclipse. This makes it suitable for UI/functional testing by everyone, not just developers.</p>
+ </div>
+</div>
+
+
+<?php
+$html = ob_get_contents();
+ob_end_clean();
+
+ # Generate the web page
+ $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>