Updated press and made some more refactorings to fit to Nova.
diff --git a/components/desktop/index.php b/components/desktop/index.php
index b32b20e..6547406 100644
--- a/components/desktop/index.php
+++ b/components/desktop/index.php
@@ -28,7 +28,7 @@
 	$html = <<<EOHTML

 

 	<div id="midcolumn">

-		<h1>Eclipse Java Workflow Tooling (JWT) Project</h1>

+		<h1>Java Workflow Tooling (JWT)</h1>

 		<div class="homeitem3col">

 			<h3> Desktop tools</h3>

 			<p>

diff --git a/components/index.php b/components/index.php
index e95cce6..50ab9c9 100644
--- a/components/index.php
+++ b/components/index.php
@@ -57,7 +57,8 @@
 					</li>

 				</ul>

 		</div>

-

+		<hr class="clearer">	

+</div>

 

 	<div id="rightcolumn">

     	 <div class="sideitem">

diff --git a/components/runtime/TaskEngineFramework_TEF.png b/components/runtime/TaskEngineFramework_TEF.png
new file mode 100644
index 0000000..8356e9d
--- /dev/null
+++ b/components/runtime/TaskEngineFramework_TEF.png
Binary files differ
diff --git a/components/runtime/index.php b/components/runtime/index.php
new file mode 100644
index 0000000..99b97ca
--- /dev/null
+++ b/components/runtime/index.php
@@ -0,0 +1,59 @@
+<?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'

+

+	#*****************************************************************************

+	#

+	# /components/desktop/index.php of Java Workflow Tooling (JWT)

+	#

+	# Author: 		Florian Lautenbacher

+	# created:		2007-10-12

+	#

+	# Description:  The Desktop tools page of the Java Workflow Tooling project

+	#

+	#

+	#****************************************************************************

+	

+	#

+	# Begin: page-specific settings.  Change these. 

+	$pageTitle 		= "Eclipse Java Workflow Tooling (JWT)";

+	$pageKeywords	= "JWT , Java Workflow Tooling Project, Workflow Editor, Workflow Administration and Monitoring, Eclipse";

+	$pageAuthor		= "Florian Lautenbacher";

+	

+	# 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)

+

+	# End: page-specific settings

+	#

+		

+	# Paste your HTML content between the EOHTML markers!	

+	$html = <<<EOHTML

+

+	<div id="midcolumn">

+		<h1>Java Workflow Tooling (JWT)</h1>

+		<div class="homeitem3col">

+			<h3> Runtime tools</h3>

+			<p>

+			In the Runtime tools we support the user with all kinds of tools for the runtime of a workflow. A first idea

+			currently discussed in the Task Engine Framework that is further described <a href="http://wiki.eclipse.org/JWT_Runtime">here</a>.

+			</p>

+			<br/>

+			<br/>

+			<div align="center"><img width=678 height=623 src="/jwt/components/runtime/TaskEngineFramework_TEF.PNG"></div>

+			<br/>			

+		</div>	

+		<hr class="clearer">	

+	</div>

+	<div id="rightcolumn">

+    	 <div class="sideitem">

+   			<h6>Incubation</h6>

+   			<div align="center"><a href="/projects/what-is-incubation.php"><img 

+        			align="center" src="/images/egg-incubation.png" 

+        			border="0" alt="Incubation" /></a></div>

+ 		</div>       		

+	</div>

+

+EOHTML;

+

+

+	# Generate the web page

+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);

+?>
\ No newline at end of file
diff --git a/components/transformations/index.php b/components/transformations/index.php
index 550d8a0..b2acccf 100644
--- a/components/transformations/index.php
+++ b/components/transformations/index.php
@@ -28,7 +28,7 @@
 	$html = <<<EOHTML

 

 <div id="midcolumn">

-		<h1>Eclipse Java Workflow Tooling (JWT) Project</h1>

+		<h1>Java Workflow Tooling (JWT)</h1>

 

 		<table border="0">

 			<td valign="top" >

@@ -51,7 +51,7 @@
 

 		

 		<div class="homeitem3col">

-			<h3> JWT to BPMN</h3>

+			<h3> JWT to BPMN (and vice versa)</h3>

 			<p>

 			The Business Process Modeling Notation (BPMN) is a standard of the <a href="http://www.bpmn.org/">Object Management Group (OMG)</a>.

 			It allows to model business processes independently of their technical realization using several constructs. BPMN has currently version <a href="http://www.bpmn.org/Documents/BPMN%201-1%20Specification.pdf">1.1</a>,

@@ -74,6 +74,15 @@
 		</div>	

 

 		<div class="homeitem3col">

+			<h3> JWT to STP-IM</h3>

+			<p>

+			<a href="http://wiki.eclipse.org/STP_Intermediate_Metamodel">STP-IM</a>, the Intermediate model of the <a href="http://www.eclipse.org/stp/">SOA Tools Platform</a> project allows

+			the existing components of STP (such as editors for the service component architecture, the business process modeling notation, etc.) to be transformed into another.

+			In order to be integrated with the STP components, there also exists a transformation from JWT to STP-IM.

+			</p>

+		</div>	

+

+		<div class="homeitem3col">

 			<h3> JWT to XPDL</h3>

 			<p>

 			Besides the above described model-to-model transformation, we also allow for model-to-text transformation. It is possible to

@@ -83,6 +92,7 @@
 			</p>

 		</div>	

 

+

 		<hr class="clearer">	

 </div>

 	

diff --git a/components/wam/index.php b/components/wam/index.php
index c87435f..1f4d79f 100644
--- a/components/wam/index.php
+++ b/components/wam/index.php
@@ -28,7 +28,7 @@
 	$html = <<<EOHTML

 

 <div id="midcolumn">

-		<h1>Eclipse Java Workflow Tooling (JWT) Project</h1>

+		<h1>Java Workflow Tooling (JWT)</h1>

 		

 		<div class="homeitem3col">

 			<h3> Workflow Administration and Monitoring (WAM)</h3>

diff --git a/components/we/index.php b/components/we/index.php
index d667b64..4df4701 100644
--- a/components/we/index.php
+++ b/components/we/index.php
@@ -28,7 +28,7 @@
 	$html = <<<EOHTML

 

 <div id="midcolumn">

-		<h1>Eclipse Java Workflow Tooling (JWT) Project</h1>

+		<h1>Java Workflow Tooling (JWT)</h1>

 		

 		<div class="homeitem3col">

 			<h3> Workflow Editor (WE)</h3>

diff --git a/index.php b/index.php
index bc1a59f..85a4e4b 100644
--- a/index.php
+++ b/index.php
@@ -124,12 +124,12 @@
  		<div class="sideitem">
 			<h3>What's new</h3>
 			<ul>
+				<li><strong>March, 10th 2009:</strong> We now switched to the new Nova design of Eclipse as discussed in the last project telco.
+				Such a telco happens every three weeks. If you are interested, have a look at our <a href="http://wiki.eclipse.org/JWT_Meetings">Wiki</a>.
 				<li><strong>January, 22nd 2009:</strong> JWT will be presented at <a href="http://www.eclipsecon.org/2009/sessions?id=292">EclipseCon</a> as well as at <a href="http://it-republik.de/konferenzen/efe/sessions/?tid=1077">Eclipse Forum Europe</a>.
 				</li>
 				<li><strong>January, 21st 2009:</strong> JWT will be part of the upcoming Eclipse release Galileo. <a href="http://wiki.eclipse.org/Galileo">Learn more</a> about Galileo. 
 				</li>
-				<li><strong>November, 27th 2008:</strong> JWT welcomes it's new mentor John Graham. John agreed to assist us in the Eclipse process, automating building tasks, etc. 
-				</li>
 			    <li><a href="/jwt/newsarchive.php">News archive</a>
 			    </li>
 			</ul>
diff --git a/newsarchive.php b/newsarchive.php
index 427c35b..5169c5b 100644
--- a/newsarchive.php
+++ b/newsarchive.php
@@ -33,6 +33,8 @@
 		<div class="homeitem3col">
 			<h3>News archive</h3>
 				<p>
+					<li><strong>November, 27th 2008:</strong> JWT welcomes it's new mentor John Graham. John agreed to assist us in the Eclipse process, automating building tasks, etc. 
+					</li>
 					<li><strong>October, 29th 2008:</strong> JWT 0.5.0 has been released. It can be downloaded <a href="http://wiki.eclipse.org/JWT_Downloads#Java_Workflow_Tooling_0.5.0">here</a>.
 					</li>
 					<li><strong>October, 22th 2008:</strong> The release review for JWT 0.5.0 is scheduled for October, 29th.
diff --git a/pages/about.php b/pages/about.php
index 59fc876..e110760 100644
--- a/pages/about.php
+++ b/pages/about.php
@@ -33,7 +33,7 @@
 	$html = <<<EOHTML
 
 <div id="midcolumn">
-		<h1>Eclipse Java Workflow Tooling (JWT) Project</h1>
+		<h1>Java Workflow Tooling (JWT)</h1>
 		
 		<div class="homeitem3col">
 			<h3>Background</h3>
diff --git a/press/ese07/index.php b/press/ese07/index.php
index e13049d..966112d 100644
--- a/press/ese07/index.php
+++ b/press/ese07/index.php
@@ -35,7 +35,23 @@
 	$html = <<<EOHTML

 

 <div id="midcolumn">

-		<h1>Eclipse Java Workflow Tooling (JWT) Project</h1>

+		<h1>Java Workflow Tooling (JWT)</h1>

+

+		<div class="homeitem3col">

+			<h3> Eclipse Forum Europe 2009</h3>

+			JWT will be presented at Eclipse Forum Europe 2009 in Mainz, Germany. See an abstract of this session <a href="http://it-republik.de/konferenzen/efe/sessions/?tid=1077#session-2">here</a>.

+		</div>

+

+		<div class="homeitem3col">

+			<h3> EclipseCon 2009</h3>

+			JWT will also be presented at EclipseCon 2009 in Santa Clara, CA, USA. See an abstract of this presentation <a href="http://www.eclipsecon.org/2009/sessions?id=292">here</a>.

+		</div>

+

+		<div class="homeitem3col">

+			<h3> Eclipse Summit Europe 2008</h3>

+			JWT was also presented during Eclipse Summit Europe in 2008: Marc Dutoo had the chance to talk 10 minutes

+			about JWT in the session "STP News and Noteworthy" (thanks to Oisin Hurley!).

+		</div>

 		

 		<div class="homeitem3col">

 			<h3> Eclipse Summit Europe 2007</h3>