Use Quicksilver styles for page titles

Signed-off-by: Eric Poirier <eric.poirier@eclipse-foundation.org>
diff --git a/content/en_corp_sponsor_details.php b/content/en_corp_sponsor_details.php
index 90e9835..78dc107 100644
--- a/content/en_corp_sponsor_details.php
+++ b/content/en_corp_sponsor_details.php
@@ -14,7 +14,6 @@
  */
 ?>
 <div id="midcolumn">
-  <h1><?php print $pageTitle; ?></h1>
   <p>The Eclipse Foundation relies on the support of our members and contributions from the user
     community to service and grow the Eclipse ecosystem. We encourage companies that make extensive
     use of Eclipse technology to support the Eclipse community through the Eclipse Corporate Sponsor
diff --git a/content/en_index.php b/content/en_index.php
index 88960f9..dab5b54 100644
--- a/content/en_index.php
+++ b/content/en_index.php
@@ -14,7 +14,6 @@
  */
 ?>
 <div id="midcolumn">
-  <h1><?php print $pageTitle;?></h1>
   <p>The Eclipse Foundation relies on the support of our members and contributions from the user
     community to service and grow the Eclipse ecosystem. We'd like to thank the following Corporate
     Sponsors who have generously supported the Eclipse community.</p>
diff --git a/content/en_support.php b/content/en_support.php
index 301540e..0d56d08 100644
--- a/content/en_support.php
+++ b/content/en_support.php
@@ -14,7 +14,6 @@
  */
 ?>
 <div id="midcolumn">
-  <h1><?php print $pageTitle; ?></h1>
   <p>
     There are three simple ways you can financially support the Eclipse Foundation. Choose whichever
     way is best for you, and please do not hesitate to <a href="mailto:membership@eclipse.org">contact
diff --git a/corp_sponsor_details.php b/corp_sponsor_details.php
index 16da403..37b9d58 100644
--- a/corp_sponsor_details.php
+++ b/corp_sponsor_details.php
@@ -29,4 +29,5 @@
 $html = ob_get_clean();
 
 $Theme->setHtml($html);
+$Theme->setDisplayHeaderTitle(TRUE);
 $Theme->generatePage();
\ No newline at end of file
diff --git a/index.php b/index.php
index 0789baa..9080680 100644
--- a/index.php
+++ b/index.php
@@ -29,4 +29,5 @@
 $html = ob_get_clean();
 
 $Theme->setHtml($html);
+$Theme->setDisplayHeaderTitle(TRUE);
 $Theme->generatePage();
diff --git a/support.php b/support.php
index 30bd692..2a09bdd 100644
--- a/support.php
+++ b/support.php
@@ -40,4 +40,5 @@
 $html = ob_get_clean();
 
 $Theme->setHtml($html);
+$Theme->setDisplayHeaderTitle(TRUE);
 $Theme->generatePage();
\ No newline at end of file