Initial home page setup
diff --git a/contributing.php b/contributing.php
index 149a3b4..60d101c 100644
--- a/contributing.php
+++ b/contributing.php
@@ -1,20 +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'
-
-	#*****************************************************************************
-	#
-	# template.php
-	#
-	# Author: 		Denis Roy
-	# Date:			2005-06-16
-	#
-	# Description: Type your page comments here - these are not sent to the browser
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "SMILA";
+	$pageTitle 		= "SMILA - Contributing";
 	$pageKeywords	= "SMILA, unstructured information management, information logistics, semantic web, framework, platform, eclipse";
 	$pageAuthor		= "Igor Novakovic";
 
diff --git a/integrators.php b/integrators.php
new file mode 100644
index 0000000..17b6f75
--- /dev/null
+++ b/integrators.php
@@ -0,0 +1,43 @@
+<?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'
+	$pageTitle 		= "SMILA - Integrators";
+	$pageKeywords	= "SMILA, unstructured information management, information logistics, semantic web, framework, platform, eclipse";
+	$pageAuthor		= "Igor Novakovic";
+
+	# Paste your HTML content between the EOHTML markers!	
+	$html = <<<EOHTML
+
+	<div id="midcolumn">
+		<h1>SMILA - SeMantic Information Logistics Architecture</h1>
+		<h2>Integrators</h2>
+		<p>
+			This page is under construction.
+		</p>
+		<p>
+			Please check back for future updates.
+		</p>
+	</div>
+	  
+	<div id="rightcolumn">
+    	<div class="sideitem">
+       		<h6>Incubation</h6><p>
+       		<div align="center">
+         		<a href="/projects/what-is-incubation.php">
+           		<img align="center" src="/images/egg-incubation.png" border="0"/></a>
+       		</div>
+     	</div>
+	  	<div class="sideitem">
+			<h6>Links</h6>
+			<ul>
+				<li><a href="http://wiki.eclipse.org/SMILA" target="_blank">Project Wiki</a></li>				
+				<li><a href="http://www.eclipse.org/proposals/eilf/SMILA_Creation_Review.pdf" target="_blank">Creation Review</a></li>
+				<li><a href="http://www.eclipse.org/proposals/eilf" target="_blank">Project proposal</a></li>
+			</ul>
+		</div>
+	</div>	
+
+EOHTML;
+
+
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>