testing some php refactoring.
diff --git a/index.php b/index.php
index 925f0a0..d38411c 100755
--- a/index.php
+++ b/index.php
@@ -37,11 +37,8 @@
 		</ul>
 	</div>
 
-	<div id="rightcolumn">
-	<? include("website/parts/incubation.php"); ?>
-	</div>
-
 <?php
+include("website/parts/incubation.php");
 $html = ob_get_contents();
 ob_end_clean();
 
diff --git a/test_download.php b/test_download.php
index fdf4fa5..64158c2 100644
--- a/test_download.php
+++ b/test_download.php
@@ -9,12 +9,6 @@
 
 	$pageTitle 		= "SWTBot &ndash; UI Testing for SWT and Eclipse";
 
-	# 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);
-
 	# Paste your HTML content between the ob_start/ob_end_clean markers!
 	ob_start();
 ?>
diff --git a/website/parts/incubation.php b/website/parts/incubation.php
index 6d5601e..fb5a87a 100644
--- a/website/parts/incubation.php
+++ b/website/parts/incubation.php
@@ -1,9 +1,11 @@
-<div class="sideitem">
-<h6>Incubation</h6>
-<p></p>
-<div align="center"><a href="/projects/what-is-incubation.php"><img
-	src="/images/egg-incubation.png" align="middle" border="0"></a></div>
-<div align="center">This project is in the <a
-	href="/projects/dev_process/validation-phase.php">Incubation Phase</a>
+<!-- begin right column for incubation -->
+<div id="rightcolumn">
+	<div class="sideitem">
+		<h6>Incubation</h6>
+		<p></p>
+		<div align="center"><a href="/projects/what-is-incubation.php"><img src="/images/egg-incubation.png" align="middle" border="0"></a></div>
+		<div align="center">This project is in the <a href="/projects/dev_process/validation-phase.php">Incubation Phase</a>
+		</div>
+	</div>
 </div>
-</div>
\ No newline at end of file
+<!-- end right column for incubation -->
\ No newline at end of file