*** empty log message ***
diff --git a/_projectCommon.php b/_projectCommon.php
new file mode 100644
index 0000000..eab4e80
--- /dev/null
+++ b/_projectCommon.php
@@ -0,0 +1,13 @@
+<?php
+
+	# Set the theme for your project's web pages.
+	# See the Committer Tools "How Do I" for list of themes
+	# https://dev.eclipse.org/committers/
+	# Optional: defaults to system theme 
+	$theme = "";
+
+	# 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
+
+?>
diff --git a/template.php b/template.php
new file mode 100644
index 0000000..e4f97f2
--- /dev/null
+++ b/template.php
@@ -0,0 +1,70 @@
+<?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'
+
+	#*****************************************************************************
+	#
+	# index.php
+	#
+	# Author: 		Denis Roy
+	# Date:			2006-08-03
+	#
+	# Description: 
+	#
+	#
+	#****************************************************************************
+	
+	#
+	# Begin: page-specific settings.  Change these. 
+	$pageTitle 		= "Eclipse documentation";
+	$pageKeywords	= "Eclipse, documentation, help, api, programmer, javadoc, sdk";
+	$pageAuthor		= "Denis Roy";
+	
+	# 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);
+
+	# End: page-specific settings
+	#
+		
+	# Paste your HTML content between the EOHTML markers!	
+	$html = <<<EOHTML
+
+<div id="maincontent">
+	<div id="midcolumn">
+		<h1>$pageTitle</h1>
+		<div class="homeitem3col">
+			<h3>Eclipse 3.1 Documentation</h3>
+			<ul>
+				<li><a href="http://help.eclipse.org/help32/index.jsp"><b>Eclipse 3.2 Documentation</b></a><b> (HTML Help Center) </b></li>
+				
+    			<li><b>Eclipse 3.1 Documentation (PDF format) </b></li>
+    			
+    			<ul>
+    				<li><a href="http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downloads/drops/R-3.1-200506271435/org.eclipse.platform.doc.user.3.1.pdf.zip">Workbench User Guide</a></li>
+					<li><a href="http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.1-200506271435/org.eclipse.jdt.doc.user.3.1.pdf.zip">Java Development User Guide</a></li>
+					<li><a href="http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.1-200506271435/org.eclipse.pde.doc.user.3.1.pdf.zip">PDE Guide</a></li>
+					<li><a href="http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.1-200506271435/org.eclipse.platform.doc.isv.3.1.pdf.zip">Platform Plug-in Developer Guide</a></li>
+					<li><a href="http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.1-200506271435/org.eclipse.jdt.doc.isv.3.1.pdf.zip">JDT Plug-in Developer Guide</a>
+				</ul>
+			</ul>
+		</div>
+	</div>
+	<div id="rightcolumn">
+		<div class="sideitem">
+			<h6>Related links</h6>
+			<ul>
+				<li><a href="http://help.eclipse.org/">Infocenter help</li>
+				<li><a href="/articles/">Eclipse articles</li>
+			</ul>
+		</div>
+	</div>
+</div>
+
+
+EOHTML;
+
+
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>