added missing incubation logo to download.php
diff --git a/download.php b/download.php
index 05ece22..3c523ec 100755
--- a/download.php
+++ b/download.php
@@ -1,4 +1,4 @@
-<?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'
+<?php  																														
 /*******************************************************************************
  * Copyright (c) 2009
  * All rights reserved. This program and the accompanying materials
@@ -10,31 +10,20 @@
  *
  *******************************************************************************/
 
-    $pageTitle 		= "Vex - Download";
+	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'
+	
+	$localVersion = false;
 
-    $html  = <<<EOHTML
-<div id="midcolumn">
-<h2>$pageTitle</h2>
-<p>All downloads are provided under the terms and conditions of the <a href="/legal/epl/notice.php">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
+    $pageTitle = "Vex - Download";
 
-<h3>Vex 1.0.0 M9</h3>
-<p />
-<p><a href="http://wiki.eclipse.org/Vex/NewAndNoteworthy"><img src="images/star.png" alt="New" style="vertical-align:text-bottom"> New & Noteworthy</a></p>
-<p><b>Update site:</b> <a href="http://download.eclipse.org/vex/milestones/">http://download.eclipse.org/vex/milestones/</a></p>
-<p><b>Drag to Install: </b><a href='http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1662' title='Drag and drop into a running Eclipse Indigo workspace to install Vex'><img src="http://marketplace.eclipse.org/misc/installbutton.png" style="vertical-align:text-bottom"/></a></p>
-
-</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;
+    $html = file_get_contents('pages/_download.html');
+    
     # Generate the web page
     $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
 ?>
\ No newline at end of file
diff --git a/pages/_download.html b/pages/_download.html
new file mode 100644
index 0000000..a8da183
--- /dev/null
+++ b/pages/_download.html
@@ -0,0 +1,23 @@
+<div id="midcolumn">
+
+<h2>Downloads</h2>
+<p>All downloads are provided under the terms and conditions of the <a href="/legal/epl/notice.php">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
+
+<h3>Vex 1.0.0 M9</h3>
+<p />
+<p><a href="http://wiki.eclipse.org/Vex/NewAndNoteworthy"><img src="images/star.png" alt="New" style="vertical-align:text-bottom"> New & Noteworthy</a></p>
+<p><b>Update site:</b> <a href="http://download.eclipse.org/vex/milestones/">http://download.eclipse.org/vex/milestones/</a></p>
+<p><b>Drag to Install: </b><a href='http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=1662' title='Drag and drop into a running Eclipse Indigo workspace to install Vex'><img src="http://marketplace.eclipse.org/misc/installbutton.png" style="vertical-align:text-bottom"/></a></p>
+
+</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>