Added new references to wiki pages
diff --git a/common/project-info.class.php b/common/project-info.class.php
index df83ebf..a58bfed 100644
--- a/common/project-info.class.php
+++ b/common/project-info.class.php
@@ -29,14 +29,14 @@
         $Nav->addCustomNav("Users", htmlspecialchars($this->info->gettingstartedurl), "", 1);
  	        $Nav->addCustomNav("Getting Started", htmlspecialchars($this->info->gettingstartedurl), "", 2);
 	        $Nav->addCustomNav("Downloads", htmlspecialchars($this->info->downloadsurl), "", 2);
-	        $Nav->addCustomNav("Documentation", "http://wiki.eclipse.org/SMILA", "", 2);
+	        $Nav->addCustomNav("Documentation", "documentation.php", "", 2);
 	        $Nav->addCustomNav("Newsgroup", "newsgroup.php", "", 2);
 	        $Nav->addCustomNav("Bugs", "bugs.php", "", 2);
 	        if( !empty($users) ) {
 	        	$users($Nav);
 	        }
         $Nav->addCustomNav("Integrators", htmlspecialchars($this->info->integratorsurl), "", 1);
-	        $Nav->addCustomNav("Plan", htmlspecialchars($this->info->projectplanurl), "", 2);
+	        $Nav->addCustomNav("Plan", "plan.php", "", 2);
 	        if( !empty($integrators) ) {
 	        	$integrators($Nav);
 	        }
diff --git a/contributing.php b/contributing.php
index 60d101c..d3e7629 100644
--- a/contributing.php
+++ b/contributing.php
@@ -10,10 +10,9 @@
 		<h1>SMILA - SeMantic Information Logistics Architecture</h1>
 		<h2>Contributing</h2>
 		<p>
-			This page is under construction.
-		</p>
-		<p>
-			Please check back for future updates.
+			If you are interested in contributing your code to SMILA,  
+			then the good place to start is to read the following <a href="http://wiki.eclipse.org/SMILA#For_developers.2C_contributors.2C_and_integrators" target="_blank">documentation</a> 
+			maintained in our wiki.
 		</p>
 	</div>
 	  
diff --git a/documentation.php b/documentation.php
new file mode 100644
index 0000000..305e451
--- /dev/null
+++ b/documentation.php
@@ -0,0 +1,44 @@
+<?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 - Documentation";
+	$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>Documentation</h2>
+		<p>
+			SMILA documentation together with concepts and specifications are is being 
+			completely maintained in our project <a href="http://wiki.eclipse.org/SMILA" target="_blank">wiki</a>. 
+		</p>
+		<p>
+			For a quick introduction to SMILA you can read our <a href="http://www.eclipse.org/smila/docs/ORDO_D.11.1.1.b_ConceptIntegrationFramework_V1.0.pdf" target="_blank">SMILA in a nutshell</a> document.
+		</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);
+?>
diff --git a/integrators.php b/integrators.php
index 17b6f75..77b6fa2 100644
--- a/integrators.php
+++ b/integrators.php
@@ -10,10 +10,19 @@
 		<h1>SMILA - SeMantic Information Logistics Architecture</h1>
 		<h2>Integrators</h2>
 		<p>
-			This page is under construction.
+			If you are only interested in integrating your service/component in SMILA, 
+			then we suggest you get familiar with <a href="http://wiki.eclipse.org/SMILA/Howto_integrate_a_component_in_SMILA" target="_blank">integration tutorial</a> 
+			maintained in our wiki.
 		</p>
 		<p>
-			Please check back for future updates.
+			Since SMILA is highly component-based you can easily replace any of its functional parts, 
+			integrate new (BPEL) services in the workflow and/or write your own data connectors (crawler/agent).
+			Basically, SMILA offers three different integration scenarios:
+			<ul>
+				<li>Integrating services in BPEL</li>
+				<li>Integrating agents and crawlers</li>
+				<li>Integrating alternative implementations for SMILA core components</li>
+			</ul>
 		</p>
 	</div>