Modernize the WindowBuilder site.

https://github.com/eclipse/windowbuilder/issues/51
diff --git a/_projectCommon.php b/_projectCommon.php
index ded14d3..205c84b 100755
--- a/_projectCommon.php
+++ b/_projectCommon.php
@@ -11,46 +11,123 @@
  *    
  *******************************************************************************/
 
-	# Set the theme for your project's web pages.
-	$theme = "solstice";
-	
+$host = $_SERVER['DOCUMENT_ROOT'];
+require_once($host . "/eclipse.org-common/system/app.class.php");
+require_once($host . "/eclipse.org-common/system/nav.class.php");
+require_once($host . "/eclipse.org-common/system/menu.class.php");
+require_once($host . "/eclipse.org-common/system/breadcrumbs.class.php");
 
-	# Define your project-wide Navigation here
-	# This appears on the left of the page if you define a left nav
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
-	# these are optional
-	
-	# If you want to override the eclipse.org navigation, uncomment below.
-	# $Nav->setLinkList(array());
-	
-	# Break the navigation into sections
-	$Nav->addNavSeparator("MyProject", 	"/windowbuilder");
-	$Nav->addCustomNav("Download", "/windowbuilder/download.php", "_self", 3);
-	$Nav->addCustomNav("Documentation", "/windowbuilder/documentation.php", "_self", 3);
-	$Nav->addCustomNav("Support", "/windowbuilder/support.php", "_self", 3);
-	#$Nav->addCustomNav("Getting Involved", "/windowbuilder/developers", "_self", 3);
-
-	# Define keywords, author and title here, or in each PHP page specifically
-	$pageKeywords	= "eclipse, project, WindowBuilder, WindowBuilderPro, Instantiations, Google";
-	$pageAuthor		= "Jaime Wren";
-	# $pageTitle 		= "Xtext";
+$App = new App();
+$Nav  = new Nav();
+$Theme = $App->getThemeClass();
+$Breadcrumb = new Breadcrumb();
 
 
-	# top navigation bar
-	# To override and replace the navigation with your own, uncomment the line below.
-	# $Menu->setMenuItemList(array());
-	# $Menu->addMenuItem("Home", "/project", "_self");
-	# $Menu->addMenuItem("Download", "/project/download.php", "_self");
-	# $Menu->addMenuItem("Documentation", "/project/documentation.php", "_self");
-	# $Menu->addMenuItem("Support", "/project/support.php", "_self");
-	# $Menu->addMenuItem("Developers", "/project/developers", "_self");
+# Define these here, or in _projectCommon.php for site-wide values
+$pageKeywords	= "eclipse, project, WindowBuilder, WindowBuilderPro, Instantiations, Google";
+$pageAuthor		= "Jaime Wren";
+$pageTitle 		= "WindowBuilder";
+
+$Breadcrumb->removeCrumb($Breadcrumb->getCrumbCount() - 1);
+$Breadcrumb->addCrumb("WindowBuilder", ".", "_self");
+$Breadcrumb->addCrumb("WindowBuilder", ".", "_self");
+
+# Define your project-wide Navigation here
+# This appears on the left of the page if you define a left nav
+# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
+# these are optional
 	
-	# To define additional CSS or other pre-body headers
-	$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/windowbuilder/style.css"/>');
+# If you want to override the eclipse.org navigation, uncomment below.
+# $Nav->setLinkList(array());
 	
-	# To enable occasional Eclipse Foundation Promotion banners on your pages (EclipseCon, etc)
-	$App->Promotion = TRUE;
+# Break the navigation into sections
+# $Nav->addNavSeparator("MyProject", 	"/windowbuilder");
+# $Nav->addCustomNav("Download", "/windowbuilder/download.php", "_self", 3);
+# $Nav->addCustomNav("Documentation", "/windowbuilder/documentation.php", "_self", 3);
+# $Nav->addCustomNav("Support", "/windowbuilder/support.php", "_self", 3);
+# $Nav->addCustomNav("Getting Involved", "/windowbuilder/developers", "_self", 3);
+
+
+# top navigation bar
+# To override and replace the navigation with your own, uncomment the line below.
+# $Menu->setMenuItemList(array());
+# $Menu->addMenuItem("Home", "/project", "_self");
+# $Menu->addMenuItem("Download", "/project/download.php", "_self");
+# $Menu->addMenuItem("Documentation", "/project/documentation.php", "_self");
+# $Menu->addMenuItem("Support", "/project/support.php", "_self");
+# $Menu->addMenuItem("Developers", "/project/developers", "_self");
 	
-	# If you have Google Analytics code, use it here
-	# $App->SetGoogleAnalyticsTrackingCode("YOUR_CODE");
+# To define additional CSS or other pre-body headers
+$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/windowbuilder/style.css"/>');
+	
+# To enable occasional Eclipse Foundation Promotion banners on your pages (EclipseCon, etc)
+$App->Promotion = TRUE;
+	
+# If you have Google Analytics code, use it here
+# $App->SetGoogleAnalyticsTrackingCode("YOUR_CODE");
+	
+// Initialize custom solstice $variables.
+$variables = array();
+
+// Add classes to <body>. (String)
+$variables['body_classes'] = '';
+
+// Insert HTML before the left nav. (String)
+$variables['leftnav_html'] = '';
+
+// Update the main container class (String)
+$variables['main_container_classes'] = 'container';
+
+// Insert HTML after opening the main content container, before the left sidebar. (String)
+$variables['main_container_html'] = '';
+
+// Insert header navigation for project websites.
+// Bug 436108 - https://bugs.eclipse.org/bugs/show_bug.cgi?id=436108
+$links = array();
+$links[] = array(
+  'icon' => 'fa-download', // Required
+  'url' => 'download.php', // Required
+  'title' => 'Download', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'Update Sites' // Optional
+);
+
+$links[] = array(
+  'icon' => 'fa-users', // Required
+  'url' => 'involved.php', // Required
+  'title' => 'Getting Involved', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'Git, Workspace Setup' // Optional
+);
+
+$links[] = array(
+  'icon' => 'fa-book', // Required
+  'url' => 'documentation.php', // Required
+  'title' => 'Documentation', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'User Guide' // Optional
+);
+
+$links[] = array(
+  'icon' => 'fa-support', // Required
+  'url' => 'support.php', // Required
+  'title' => 'Support', // Required
+  // 'target' => '_blank', // Optional
+  'text' => 'Questions, Issue Tracking' // Optional
+);	
+
+$variables['header_nav'] = array(
+  'links' => $links, // Required
+  'logo' => array( // Required
+    // 'src' => 'https://projects.eclipse.org/sites/default/files/windowbuilder_0.png', // Required
+    'src' => 'images/wb_eclipse_logo.svg', // Required
+    'alt' => 'Home Page', // Optional
+    // 'target' => '_blank', // Optional
+    'url' => '.' // Optional
+  )
+);
+
+// Set Solstice theme variables. (Array)
+$App->setThemeVariables($variables);
+
 ?>
\ No newline at end of file
diff --git a/documentation.php b/documentation.php
index 4770551..2388269 100644
--- a/documentation.php
+++ b/documentation.php
@@ -10,16 +10,19 @@
  *    
  *******************************************************************************/
 
-	$pageTitle 		= "WindowBuilder - Documentation";
+require_once ('_projectCommon.php');
+$pageTitle 		= "WindowBuilder | Documentation";
+$Breadcrumb->removeCrumb($Breadcrumb->getCrumbCount() - 1);
+$Breadcrumb->addCrumb("Documentation", "documentation.php", "_self");
 
-	$html  = <<<EOHTML
+$html  = <<<EOHTML
 <div id="midcolumn">
 <h2>$pageTitle</h2>
-<p>See the latest documentation <a href="http://help.eclipse.org/indigo/topic/org.eclipse.wb.doc.user/html/index.html">here</a>.</p>
+<p>See the latest documentation <a href="https://help.eclipse.org/latest/topic/org.eclipse.wb.doc.user/html/index.html">here</a>.</p>
 
 </div>
 EOHTML;
 
-	# Generate the web page
-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+# Generate the web page
+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb);
 ?>
\ No newline at end of file
diff --git a/download.php b/download.php
index 65dabae..f3d7b13 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,9 +10,13 @@
  *    
  *******************************************************************************/
 
-	$pageTitle 		= "Installing WindowBuilder Pro";
+// Shared variables/configs for all pages of your website.
+require_once ('_projectCommon.php');
+$pageTitle 		= "WindowBuilder | Download";
+$Breadcrumb->removeCrumb($Breadcrumb->getCrumbCount() - 1);
+$Breadcrumb->addCrumb("Download", "download.php", "_self");
 
-	$html  = <<<EOHTML
+$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">
@@ -23,13 +27,13 @@
 clean Java code, with the visual design and source always in sync.</p>
 
 <p>These instructions assume that you have already installed some flavor of Eclipse. If you have not, Eclipse 
-can be downloaded from <a href="http://www.eclipse.org/downloads/">http://www.eclipse.org/downloads/</a>. 
+can be downloaded from <a href="https://www.eclipse.org/downloads/">https://www.eclipse.org/downloads/</a>. 
 Instructions and system requirements for installing WindowBuilder can be found 
-<a href="http://help.eclipse.org/index.jsp?topic=/org.eclipse.wb.doc.user/html/installation/index.html">here</a>.</p>
+<a href="https://help.eclipse.org/index.jsp?topic=/org.eclipse.wb.doc.user/html/installation/index.html">here</a>.</p>
 
 <h3>Update Sites</h3>
 
-<table border="2">
+<table border="2" id="downloads-table">
 	<tr>
 	  <th></th>
 	  <th colspan="3"><b>Download and Install</b></th>
@@ -42,11 +46,11 @@
 	</tr>
 	<tr>
 	  <td>Current (1.9.7)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/latest/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/latest/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/latest/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/latest/repository.zip">link</a></td>
 	   <td>
 	  	<div class="drag_installbutton drag_installbutton_v2">
-			<a href="http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=4008412" class="drag"
+			<a href="https://marketplace.eclipse.org/marketplace-client-intro?mpc_install=4008412" class="drag"
 			title="Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client"><span
 				class="btn btn-default"><i class="fa fa-download orange"></i> Install</span>
 			<div class="tooltip">
@@ -55,11 +59,11 @@
 	  </td>
 	<tr>
 	  <td>Upcoming (1.9.8)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/lastgoodbuild/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/lastgoodbuild/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/lastgoodbuild/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/lastgoodbuild/repository.zip">link</a></td>
 	  <td>
 		<div class="drag_installbutton drag_installbutton_v2">
-			<a href="http://marketplace.eclipse.org/marketplace-client-intro?mpc_install=4961416" class="drag"
+			<a href="https://marketplace.eclipse.org/marketplace-client-intro?mpc_install=4961416" class="drag"
 				title="Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client"><span
 					class="btn btn-default"><i class="fa fa-download orange"></i> Install</span>
 			<div class="tooltip">
@@ -70,13 +74,13 @@
 	</tr>
 	<tr>
 	  <td>1.9.7 (Permanent)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/1.9.7/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.7/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/1.9.7/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.7/repository.zip">link</a></td>
 	</tr>
 	<tr>
 	  <td>1.9.6 (Permanent)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/1.9.6/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.6/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/1.9.6/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.6/repository.zip">link</a></td>
 	</tr>
 	<tr>
 	  <td>1.9.5 (removed)</td>
@@ -85,32 +89,32 @@
 	</tr>
 	<tr>
 	  <td>1.9.4 (Permanent)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/1.9.4/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.4/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/1.9.4/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.4/repository.zip">link</a></td>
 	</tr>
 	<tr>
 	  <td>1.9.3 (Permanent)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/1.9.3/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.3/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/1.9.3/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.3/repository.zip">link</a></td>
 	</tr>
 	<tr>
 	  <td>1.9.2 (Permanent)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/1.9.2/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.2/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/1.9.2/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.2/repository.zip">link</a></td>
 	</tr>
 	<tr>
 	  <td>1.9.1 (Permanent)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/1.9.1/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.1/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/1.9.1/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.1/repository.zip">link</a></td>
 	</tr>
 	<tr>
 	  <td>1.9.0 (Permanent)</td>
-	  <td><a href="http://download.eclipse.org/windowbuilder/1.9.0/">link</a></td>
-	  <td><a href="http://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.0/repository.zip">link</a></td>
+	  <td><a href="https://download.eclipse.org/windowbuilder/1.9.0/">link</a></td>
+	  <td><a href="https://eclipse.org/downloads/download.php?file=/windowbuilder/1.9.0/repository.zip">link</a></td>
 	</tr>
 	<tr>
 	  <td>Archives</td>
-	  <td><a href="http://archive.eclipse.org/windowbuilder/">link</a></td>
+	  <td><a href="https://archive.eclipse.org/windowbuilder/">link</a></td>
 	  <td></td>
 	</tr>
 </table>
@@ -122,6 +126,6 @@
 </div>
 EOHTML;
 
-	# Generate the web page
-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+# Generate the web page
+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb);
 ?>
diff --git a/images/backgroundMain.png b/images/backgroundMain.png
deleted file mode 100755
index 9487b21..0000000
--- a/images/backgroundMain.png
+++ /dev/null
Binary files differ
diff --git a/images/backgroundMainEmpty.png b/images/backgroundMainEmpty.png
deleted file mode 100755
index 9487b21..0000000
--- a/images/backgroundMainEmpty.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonDocumentation.png b/images/buttonDocumentation.png
deleted file mode 100755
index bbfdde0..0000000
--- a/images/buttonDocumentation.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonDocumentation_sel.png b/images/buttonDocumentation_sel.png
deleted file mode 100755
index 8affb93..0000000
--- a/images/buttonDocumentation_sel.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonDownload.png b/images/buttonDownload.png
deleted file mode 100755
index e620092..0000000
--- a/images/buttonDownload.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonDownload_new.png b/images/buttonDownload_new.png
deleted file mode 100755
index e620092..0000000
--- a/images/buttonDownload_new.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonDownload_sel.png b/images/buttonDownload_sel.png
deleted file mode 100755
index d3a0330..0000000
--- a/images/buttonDownload_sel.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonInvolved.png b/images/buttonInvolved.png
deleted file mode 100755
index b3e9a82..0000000
--- a/images/buttonInvolved.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonInvolved_sel.png b/images/buttonInvolved_sel.png
deleted file mode 100755
index 346a452..0000000
--- a/images/buttonInvolved_sel.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonSupport.png b/images/buttonSupport.png
deleted file mode 100755
index bd36086..0000000
--- a/images/buttonSupport.png
+++ /dev/null
Binary files differ
diff --git a/images/buttonSupport_sel.png b/images/buttonSupport_sel.png
deleted file mode 100755
index a535fe8..0000000
--- a/images/buttonSupport_sel.png
+++ /dev/null
Binary files differ
diff --git a/images/wb_eclipse_logo.svg b/images/wb_eclipse_logo.svg
new file mode 100644
index 0000000..1cbf559
--- /dev/null
+++ b/images/wb_eclipse_logo.svg
@@ -0,0 +1,242 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   width="455.47244"
+   height="102.206"
+   viewBox="71.07 323.663 455.47246 102.206"
+   enable-background="new 71.07 323.663 469.86 110.329"
+   xml:space="preserve"
+   sodipodi:docname="wb_eclipse_logo.svg"
+   inkscape:version="1.1 (c68e22c387, 2021-05-23)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"><defs
+   id="defs66"><rect
+     x="98.59066"
+     y="-57.733269"
+     width="386.8129"
+     height="159.43263"
+     id="rect51666" /><rect
+     x="123.46037"
+     y="5.7733269"
+     width="344.17911"
+     height="97.702454"
+     id="rect8040" /></defs><sodipodi:namedview
+   id="namedview64"
+   pagecolor="#ffffff"
+   bordercolor="#666666"
+   borderopacity="1.0"
+   inkscape:pageshadow="2"
+   inkscape:pageopacity="0.0"
+   inkscape:pagecheckerboard="0"
+   showgrid="false"
+   fit-margin-top="0"
+   fit-margin-left="0"
+   fit-margin-right="0"
+   fit-margin-bottom="0"
+   inkscape:zoom="2.2517346"
+   inkscape:cx="89.708618"
+   inkscape:cy="51.293789"
+   inkscape:window-width="3840"
+   inkscape:window-height="2097"
+   inkscape:window-x="3832"
+   inkscape:window-y="-8"
+   inkscape:window-maximized="1"
+   inkscape:current-layer="Layer_1" />
+<path
+   fill="#2c2255"
+   d="M 101.124,388.873 H 84.38 c 2.217,7.605 6.331,14.421 12.354,20.445 9.602,9.604 21.148,14.398 34.65,14.398 2.699,0 5.314,-0.201 7.854,-0.584 10.17,-1.535 19.074,-6.133 26.703,-13.814 6.062,-6.021 10.205,-12.84 12.439,-20.445 h -6.795 -9.936 z"
+   id="path2" />
+<g
+   id="g8"
+   transform="translate(0,-4.063)">
+	<path
+   fill="#2c2255"
+   d="m 91.891,370.194 h -8.747 c -0.32,1.922 -0.538,3.884 -0.637,5.896 h 10.396 5.215 75.275 6.871 c -0.1,-2.012 -0.318,-3.974 -0.641,-5.896"
+   id="path4" />
+	<path
+   fill="#2c2255"
+   d="m 82.507,381.565 c 0.099,2.013 0.316,3.975 0.637,5.896 h 9.094 6.893 73.648 6.846 c 0.322,-1.921 0.542,-3.883 0.642,-5.896"
+   id="path6" />
+</g>
+<path
+   fill="#2c2255"
+   d="m 178.382,360.655 c -2.232,-7.626 -6.376,-14.474 -12.441,-20.54 -7.609,-7.609 -16.488,-12.174 -26.625,-13.71 -2.564,-0.389 -5.205,-0.593 -7.932,-0.593 -13.502,0 -25.049,4.769 -34.65,14.303 -6.025,6.066 -10.141,12.914 -12.357,20.54"
+   id="path10" />
+<g
+   id="g14"
+   transform="translate(0,-4.063)">
+	<path
+   fill="#f7941e"
+   d="m 79.6,378.829 c 0,-25.824 19.395,-47.281 44.626,-51.055 -0.626,-0.023 -1.255,-0.048 -1.887,-0.048 -28.314,0 -51.269,22.88 -51.269,51.103 0,28.224 22.954,51.103 51.269,51.103 0.634,0 1.263,-0.023 1.891,-0.047 C 98.995,426.111 79.6,404.654 79.6,378.829 Z"
+   id="path12" />
+</g>
+
+
+
+
+
+
+
+
+<g
+   id="g53"
+   transform="translate(0,-4.063)">
+	
+		<linearGradient
+   id="SVGID_1_"
+   gradientUnits="userSpaceOnUse"
+   x1="387.3848"
+   y1="229.9238"
+   x2="387.3848"
+   y2="156.28889"
+   gradientTransform="translate(-256,204.5)">
+		<stop
+   offset="0.3033"
+   style="stop-color:#473788"
+   id="stop32" />
+		<stop
+   offset="0.872"
+   style="stop-color:#2C2255"
+   id="stop34" />
+	</linearGradient>
+	<path
+   fill="url(#SVGID_1_)"
+   d="m 164.653,376.089 c -0.164,-2.021 -0.504,-3.992 -1.012,-5.896 h -64.51 c -0.508,1.903 -0.849,3.874 -1.013,5.896 z"
+   id="path37"
+   style="fill:url(#SVGID_1_)" />
+	
+		<linearGradient
+   id="SVGID_2_"
+   gradientUnits="userSpaceOnUse"
+   x1="387.38571"
+   y1="229.9248"
+   x2="387.38571"
+   y2="156.2899"
+   gradientTransform="translate(-256,204.5)">
+		<stop
+   offset="0.3033"
+   style="stop-color:#473788"
+   id="stop39" />
+		<stop
+   offset="0.872"
+   style="stop-color:#2C2255"
+   id="stop41" />
+	</linearGradient>
+	<path
+   fill="url(#SVGID_2_)"
+   d="M 164.653,381.565 H 98.119 c 0.164,2.021 0.503,3.992 1.012,5.896 h 64.511 c 0.508,-1.904 0.847,-3.875 1.011,-5.896 z"
+   id="path44"
+   style="fill:url(#SVGID_2_)" />
+	
+		<linearGradient
+   id="SVGID_3_"
+   gradientUnits="userSpaceOnUse"
+   x1="387.38571"
+   y1="229.9229"
+   x2="387.38571"
+   y2="156.2915"
+   gradientTransform="translate(-256,204.5)">
+		<stop
+   offset="0.3033"
+   style="stop-color:#473788"
+   id="stop46" />
+		<stop
+   offset="0.8631"
+   style="stop-color:#2C2255"
+   id="stop48" />
+	</linearGradient>
+	<path
+   fill="url(#SVGID_3_)"
+   d="m 131.386,412.217 c 13.397,0 24.945,-7.893 30.263,-19.281 h -60.526 c 5.318,11.388 16.866,19.281 30.263,19.281 z"
+   id="path51"
+   style="fill:url(#SVGID_3_)" />
+</g>
+<g
+   id="g61"
+   transform="translate(0,-4.063)">
+	<path
+   fill="#ffffff"
+   d="m 93.188,381.565 h 4.884 66.706 8.763 6.657 c 0.046,-0.871 0.072,-1.748 0.072,-2.631 0,-0.955 -0.035,-1.902 -0.089,-2.845 H 173.54 164.777 98.071 92.842 82.507 c -0.054,0.942 -0.089,1.89 -0.089,2.845 0,0.883 0.026,1.76 0.072,2.631 z"
+   id="path55" />
+	<path
+   fill="#ffffff"
+   d="M 100.928,364.718 H 84.376 c -0.544,1.783 -0.895,3.612 -1.232,5.476 h 8.525 7.259 64.679 9.16 6.547 c -0.338,-1.863 -0.773,-3.692 -1.316,-5.476"
+   id="path57" />
+	<path
+   fill="#ffffff"
+   d="m 173.026,387.46 h -9.16 -64.678 -6.912 -9.133 c 0.328,1.863 0.701,3.691 1.236,5.476 h 16.807 60.682 9.962 6.488 c 0.534,-1.784 0.965,-3.612 1.294,-5.476 z"
+   id="path59" />
+</g>
+<text
+   xml:space="preserve"
+   transform="translate(71.07,319.6)"
+   id="text51664"
+   style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect51666);fill:#000000;fill-opacity:1;stroke:none" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 199.19302,390.54531 c -0.10703,-0.30532 -2.00838,-7.44982 -4.22523,-15.87665 -2.21685,-8.42684 -4.11936,-15.5822 -4.22781,-15.90079 -0.14761,-0.43367 0.32581,-0.5453 1.88349,-0.44411 l 2.08067,0.13517 3.35491,13.40157 c 1.8452,7.37086 3.47871,13.52335 3.63003,13.6722 0.15131,0.14884 1.82678,-5.94168 3.72326,-13.5345 l 3.44813,-13.80513 1.98187,0.13293 1.98187,0.13293 3.34539,13.54511 c 1.83996,7.44982 3.47398,13.68957 3.63116,13.86613 0.15717,0.17656 1.85306,-5.9687 3.76864,-13.65613 l 3.48286,-13.97716 h 1.90143 1.90143 l -2.17903,8.32691 c -1.19846,4.57981 -3.11766,11.97411 -4.26489,16.43178 l -2.08587,8.10486 -2.2398,-0.002 -2.2398,-0.002 -3.51391,-13.8032 c -1.93265,-7.59176 -3.65369,-13.5363 -3.82453,-13.2101 -0.17084,0.32621 -1.78369,6.53852 -3.5841,13.80514 l -3.27348,13.21204 h -2.13104 c -1.30499,0 -2.20648,-0.21519 -2.32565,-0.55513 z"
+   id="path67520" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 237.60827,378.88763 v -12.21281 h 1.77641 1.77641 v 12.21281 12.2128 h -1.77641 -1.77641 z"
+   id="path67559" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 237.16417,360.23534 v -1.99846 h 2.22051 2.22051 v 1.99846 1.99846 h -2.22051 -2.22051 z"
+   id="path67598" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 250.04313,378.88763 v -12.21281 h 1.77641 c 1.67772,0 1.77641,0.074 1.77641,1.33231 0,1.31344 0.56973,1.76278 1.11547,0.87975 0.15383,-0.2489 1.31474,-0.97962 2.5798,-1.62382 3.78128,-1.92552 8.32641,-1.47666 10.61113,1.04793 1.8639,2.05958 2.12538,3.71418 2.12538,13.44904 v 9.3404 h -1.7376 -1.7376 l -0.14984,-9.23578 c -0.17123,-10.55458 -0.36999,-11.24352 -3.48599,-12.08257 -2.23382,-0.6015 -4.07348,-0.26642 -6.89187,1.25531 l -2.20683,1.19153 -0.11986,9.43575 -0.11986,9.43576 h -1.76757 -1.76758 z"
+   id="path67674" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 282.68463,390.80784 c -3.89068,-2.0475 -5.66167,-5.7274 -5.6605,-11.76182 6.1e-4,-3.13192 0.20146,-4.27694 1.09108,-6.22013 1.27441,-2.78368 3.45668,-5.11652 5.66626,-6.05721 2.01053,-0.85594 6.50321,-0.8072 8.65998,0.094 0.92194,0.38522 1.75177,0.70039 1.84407,0.70039 0.0923,0 0.16782,-2.39815 0.16782,-5.32923 v -5.32922 h 1.77641 1.77641 v 17.09793 17.09793 h -1.77641 c -1.67772,0 -1.77641,-0.074 -1.77641,-1.33231 0,-1.33601 -0.57191,-1.75927 -1.13847,-0.84256 -0.16647,0.26936 -1.32738,0.96687 -2.57979,1.55002 -2.66937,1.24292 -6.05452,1.38262 -8.05045,0.33225 z m 9.13549,-4.0374 2.41117,-1.22128 0.12179,-7.44561 0.1218,-7.44561 -1.23205,-0.47957 c -0.67763,-0.26376 -2.36389,-0.58661 -3.74725,-0.71745 -3.34489,-0.31636 -6.00859,0.91341 -7.42073,3.42598 -2.24613,3.99645 -1.53542,11.56081 1.31124,13.95612 1.92536,1.62008 5.14695,1.59235 8.43403,-0.0726 z"
+   id="path67713" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 312.2783,390.9365 c -2.28502,-0.82692 -4.71528,-3.10615 -5.82166,-5.45986 -1.38095,-2.93785 -1.70124,-8.02246 -0.71832,-11.40357 1.71485,-5.89889 7.52299,-9.24531 13.38936,-7.71444 2.98437,0.77879 5.10502,2.47087 6.65544,5.31042 1.77515,3.25112 2.0809,9.09905 0.67129,12.83944 -1.12377,2.98191 -3.97759,5.8471 -6.52973,6.55575 -2.21769,0.61579 -5.75507,0.55669 -7.64638,-0.12774 z m 7.49579,-3.33026 c 2.46806,-1.32313 3.67911,-4.16519 3.67911,-8.634 0,-4.38415 -0.58795,-6.38672 -2.37889,-8.10255 -1.15435,-1.10594 -1.74427,-1.30112 -4.31973,-1.4292 -3.68358,-0.1832 -5.50513,0.77735 -6.77374,3.57196 -0.98872,2.17807 -1.19361,8.11618 -0.36514,10.583 1.41782,4.22168 6.22479,6.1196 10.15839,4.01079 z"
+   id="path67752" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d=""
+   id="path67791" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 335.58497,379.4617 c -1.68108,-6.42214 -3.14662,-11.92643 -3.25675,-12.23175 -0.14156,-0.39248 0.39615,-0.55513 1.83525,-0.55513 1.1195,0 2.03546,0.12817 2.03546,0.28483 0,0.6789 4.14166,17.76163 4.44327,18.32674 0.20663,0.38715 1.50058,-2.99682 3.39628,-8.88204 l 3.06247,-9.50748 1.54498,-0.1313 1.54498,-0.1313 3.04916,9.23539 c 1.67704,5.07947 3.20017,9.4002 3.38474,9.60162 0.18457,0.20142 0.63997,-0.99765 1.012,-2.66461 0.37203,-1.66696 1.32966,-5.97857 2.12807,-9.58135 l 1.45165,-6.5505 h 1.84838 1.84837 l -3.15946,12.10178 -3.15946,12.10178 h -1.72732 -1.72732 l -3.1342,-9.43717 c -1.7238,-5.19044 -3.24108,-9.43717 -3.37173,-9.43717 -0.13065,0 -1.64681,4.24673 -3.36925,9.43717 l -3.13171,9.43717 -1.74567,0.12998 -1.74567,0.12997 z"
+   id="path67830" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 371.7271,374.65937 v -16.55124 l 7.66076,0.23188 c 8.08568,0.24475 10.10471,0.68534 12.21174,2.66478 0.55565,0.52201 1.21638,1.71451 1.46828,2.64999 0.7194,2.67168 0.1084,4.68754 -2.08588,6.88182 -1.06421,1.0642 -1.93492,2.0046 -1.93492,2.08977 0,0.0852 0.59169,0.27319 1.31488,0.41783 1.79687,0.35937 4.74039,3.11822 5.37341,5.03629 1.16923,3.54282 -0.31456,8.26081 -3.27168,10.40294 -2.66233,1.92858 -4.27649,2.24187 -12.85378,2.49477 l -7.88281,0.23241 z m 17.05799,12.00004 c 2.22757,-1.1482 3.15055,-2.84987 3.13359,-5.7773 -0.0273,-4.70989 -1.9384,-5.76935 -10.40707,-5.76935 h -5.78759 v 6.25184 6.25184 l 5.88435,-0.14544 c 4.11663,-0.10175 6.27259,-0.34555 7.17672,-0.81159 z m -2.67132,-15.52584 c 2.11975,-0.80592 2.93331,-2.05066 2.93331,-4.48795 0,-4.19621 -1.15536,-4.85592 -8.50421,-4.85592 h -4.81885 v 4.88512 4.88512 h 4.63416 c 2.54879,0 5.1388,-0.19186 5.75559,-0.42637 z"
+   id="path67869" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 447.42639,374.0025 c 1.2e-4,-9.52599 0.0589,-13.35979 0.13068,-8.51955 0.0718,4.84023 0.0716,12.63422 -2.3e-4,17.31998 -0.0719,4.68575 -0.13058,0.72556 -0.13045,-8.80043 z"
+   id="path67982" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 460.29717,390.94129 c -1.95191,-0.88459 -4.43033,-3.97692 -5.1374,-6.40995 -0.3342,-1.15 -0.60365,-3.79351 -0.59878,-5.87448 0.008,-3.22986 0.19041,-4.15468 1.24951,-6.31939 2.26629,-4.63213 6.65658,-7.00605 11.32096,-6.12147 1.2771,0.2422 2.70317,0.64436 3.16905,0.89369 1.68411,0.90131 1.79366,0.60353 1.79366,-4.87589 v -5.32923 h 1.7764 1.77641 v 17.09793 17.09793 h -1.77641 c -1.67772,0 -1.7764,-0.074 -1.7764,-1.3323 0,-0.73277 -0.0867,-1.33231 -0.19255,-1.33231 -0.1059,0 -1.22408,0.64124 -2.48485,1.42498 -2.67253,1.66133 -6.76738,2.14649 -9.1196,1.08049 z m 9.70707,-4.42685 2.08993,-1.22478 v -7.23767 -7.23768 l -1.22129,-0.56681 c -0.6717,-0.31174 -2.4379,-0.66835 -3.92488,-0.79246 -3.41472,-0.285 -5.5706,0.65306 -7.2173,3.14038 -1.08316,1.6361 -1.18165,2.15777 -1.18165,6.25904 0,7.16269 1.56309,9.27255 6.68109,9.01817 1.95915,-0.0974 3.24868,-0.46423 4.7741,-1.35819 z"
+   id="path68021" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 490.44999,390.74942 c -5.19078,-1.85475 -7.35975,-4.99976 -7.62631,-11.05814 -0.36547,-8.30656 4.04849,-13.54906 11.46493,-13.61697 6.15774,-0.0564 9.72085,3.35941 10.12838,9.70962 l 0.21343,3.32575 h -9.16249 c -10.23056,0 -9.64878,-0.21442 -8.69885,3.20594 1.3312,4.79319 6.13624,6.98376 12.01525,5.47763 1.55678,-0.39883 3.27586,-1.01694 3.82017,-1.37359 1.40334,-0.9195 1.46501,-0.86608 1.46501,1.2689 v 1.91736 l -2.55358,0.81338 c -3.7594,1.19746 -8.2626,1.33179 -11.06594,0.33012 z m 10.37976,-16.15334 c -1.04397,-7.78334 -12.62733,-7.45451 -14.28965,0.40565 l -0.30524,1.44333 h 7.42144 7.42145 z"
+   id="path68097" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 511.17515,378.88763 v -12.21281 h 1.97292 1.97293 l 0.13656,1.74451 0.13656,1.74452 2.59628,-1.61516 c 2.11266,-1.3143 3.12603,-1.64889 5.44025,-1.79625 l 2.84397,-0.18109 v 1.9574 1.95741 l -3.21974,-0.009 c -2.29013,-0.006 -3.66852,0.22819 -4.7741,0.8125 -3.23984,1.71227 -3.10871,1.2484 -3.10871,10.99755 v 8.81321 h -1.99846 -1.99846 z"
+   id="path68136" /><path
+   style="fill:#f7941e;fill-opacity:1;stroke-width:0.444102"
+   d="m 237.16417,360.23534 v -1.99846 h 2.22051 2.22051 v 1.99846 1.99846 h -2.22051 -2.22051 z"
+   id="path72580" /><path
+   style="fill:#f7941e;fill-opacity:1;stroke-width:0.444102"
+   d="m 430.79267,360.23534 v -1.99846 h 2.22051 2.22051 v 1.99846 1.99846 h -2.22051 -2.22051 z"
+   id="path72619" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 335.50219,66.948387 c -1.38912,-0.700491 -2.31332,-1.596706 -3.0913,-2.997689 -1.06903,-1.925092 -1.11549,-2.344916 -1.26546,-11.435628 l -0.15568,-9.437169 h 2.04263 2.04263 v 8.674254 c 0,9.687481 0.35398,11.398633 2.53211,12.240337 2.06877,0.799446 5.61724,0.264413 7.99557,-1.20556 l 2.12923,-1.316018 0.12004,-9.196507 0.12003,-9.196506 h 1.7674 1.7674 v 12.212807 12.212807 h -1.77641 c -1.73411,0 -1.77641,-0.03701 -1.77641,-1.554357 0,-0.854897 -0.11325,-1.554358 -0.25168,-1.554358 -0.13842,0 -0.9374,0.523025 -1.77551,1.162278 -3.28733,2.507372 -7.18087,3.027021 -10.42459,1.391309 z"
+   id="path6487"
+   transform="translate(71.07,323.663)" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="M 360.38883,55.290708 V 43.077901 h 1.77641 1.77641 v 12.212807 12.212807 h -1.77641 -1.77641 z"
+   id="path6526"
+   transform="translate(71.07,323.663)" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 376.50959,50.183534 c 0,-1.343409 0.0833,-1.892985 0.18501,-1.221281 0.10175,0.671705 0.10175,1.770857 0,2.442562 -0.10176,0.671704 -0.18501,0.122128 -0.18501,-1.221281 z"
+   id="path6565"
+   transform="translate(71.07,323.663)" /><path
+   style="fill:#2c2255;fill-opacity:1;stroke-width:0.444102"
+   d="m 372.82369,50.405585 v -17.09793 h 1.7542 1.75421 v 17.09793 17.09793 h -1.75421 -1.7542 z"
+   id="path6641"
+   transform="translate(71.07,323.663)" /></svg>
diff --git a/index.php b/index.php
index 11d8f0a..3dba7c8 100755
--- a/index.php
+++ b/index.php
@@ -10,20 +10,11 @@
  *    
  *******************************************************************************/
 
-	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());
-	
-	$localVersion = false;
-	
-	# Define these here, or in _projectCommon.php for site-wide values
-	$pageKeywords	= "";
-	$pageAuthor		= "Jaime Wren";
-	$pageTitle 		= "WindowBuilder";
-	
-	
-	// 	# Paste your HTML content between the EOHTML markers!
-	$html = file_get_contents('pages/_index.html');
+// Shared variables/configs for all pages of your website.
+require_once ('_projectCommon.php');
 
-	# Generate the web page
-	$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
+$html = file_get_contents('pages/_index.html');
 
+# Generate the web page
+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb);
 ?>
\ No newline at end of file
diff --git a/involved.php b/involved.php
index 302629a..b153838 100644
--- a/involved.php
+++ b/involved.php
@@ -10,18 +10,25 @@
  *    
  *******************************************************************************/
 
-	$pageTitle 		= "Installing WindowBuilder Pro";
+require_once ('_projectCommon.php');
+$pageTitle 		= "WindowBuilder | Getting Involved in Development";
+$Breadcrumb->removeCrumb($Breadcrumb->getCrumbCount() - 1);
+$Breadcrumb->addCrumb("Getting Involved", "involved.php", "_self");
 
-	$html  = <<<EOHTML
+$html  = <<<EOHTML
 <div id="midcolumn">
 <h2>$pageTitle</h2>
 
-<p>Public read only: <code><a href="https://git.eclipse.org/c/windowbuilder/org.eclipse.windowbuilder.git">https://git.eclipse.org/c/windowbuilder/org.eclipse.windowbuilder.git/</a></code></p>
-<p>EclipseLabs Extras: <code><a href="https://code.google.com/a/eclipselabs.org/p/windowbuilder-extras/source/browse">https://code.google.com/a/eclipselabs.org/p/windowbuilder-extras/source/browse</a></code></p>
+<p>
+The WindowBuilder developers welcome your involvement. Simply follow steps in the Contribution guide:
+</p>
+<p>
+<a href="https://github.com/eclipse/windowbuilder#contributing">https://github.com/eclipse/windowbuilder</a>
+</p>
 
 </div>
 EOHTML;
 
-	# Generate the web page
-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+# Generate the web page
+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb);
 ?>
\ No newline at end of file
diff --git a/metadata/WBProjectPlan.xml b/metadata/WBProjectPlan.xml
deleted file mode 100644
index 9f30d7a..0000000
--- a/metadata/WBProjectPlan.xml
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml"
-      name="Project Name">
-   <release projectid="technology.windowbuilder" version="1.5"/>
-   <introduction>
-     <html:div><html:p><html:b>WindowBuilder</html:b> is a powerful and easy to use bi-directional Java GUI designer that makes it very 
-      easy to create Java GUI applications without spending a lot of time writing code to display simple forms. With
-      <html:b>WindowBuilder</html:b> 
-      you can create complicated windows in minutes.  Use the visual designer and Java code will be generated for you. You can easily 
-      add controls using drag-and-drop, add event handlers to your controls, change various properties of controls using a property editor, 
-      internationalize your app and much more.</html:p>
-     </html:div>
-   </introduction>
-   <release_deliverables>
-     <html:div><html:p>The WindowBuilder project delivers a bi-directional Java GUI designer that can be installed as a feature into an Eclipse IDE installation using an update site.</html:p></html:div>
-   </release_deliverables>
-   <release_milestones>
-      <preamble />
-      <milestone date="06/27/2012" milestone="1.5.0"><html:div>WB 1.5.0 should be released and included in the Juno simultaneous release</html:div></milestone>
-      <milestone date="09/28/2012" milestone="1.5.1"><html:div>WB 1.5.1 should be released and included in the Juno SR1 release</html:div></milestone>
-      <postamble />
-   </release_milestones>
-   <target_environments>
-     <html:div>WindowBuilder requires Java 6 and runs on Eclipse 3.5 and greater.</html:div>
-     <internationalization>
-          <html:div><html:p>WindowBuilder is prepared to be translated. Translation relevant String constants are externalized into resource bundles.</html:p></html:div>
-     </internationalization>
-   </target_environments>
-   <compatibility_with_previous_releases>
-       <html:div>Binary and source compatibility is expected with the previous release.</html:div>
-   </compatibility_with_previous_releases>
-   <themes_and_priorities>
-     <preamble>
-         <html:div>We have the following major themes for our Juno release:</html:div>
-     </preamble>
-     <theme name="Ensure that WindowBuilder works fine with Eclipse 4.2">
-        <description><html:p>As the Juno simultaneous release is going to be based on Eclipse 4.2, WindowBuilder needs to work properly when installed as a feature in an Eclipse 4.2 IDE.</html:p></description>
-     </theme>
-     <theme name="Add support for e4 development">
-        <description><html:p>WindowBuilder needs to support creating and editing e4 ViewParts.</html:p></description>
-     </theme>
-     <theme name="Community support">
-        <description><html:p>The WindowBuilder team needs to continue supporting users who wish to use WB to create their Swing and SWT user interfaces as well as developers wishing to use WB as a base for creating their own custom UI builders.</html:p></description>
-     </theme>
-   </themes_and_priorities>
-   <!-- 
-   <appendix name="Project Refactoring">
-     ...html...
-   </appendix>
-    -->  
- </plan>
diff --git a/metadata/descriptionurl.html b/metadata/descriptionurl.html
deleted file mode 100644
index e772594..0000000
--- a/metadata/descriptionurl.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<body><p>
-WindowBuilder is composed of SWT Designer and Swing Designer and makes it very easy to create Java GUI applications without spending a lot of time writing code. Use the WYSIWYG visual designer and layout tools to create simple forms to complex windows; the Java code will be generated for you. Easily add controls using drag-and-drop, add event handlers to your controls, change various properties of controls using a property editor, internationalize your app and much more.
-</p></body>
\ No newline at end of file
diff --git a/metadata/paragraphurl.html b/metadata/paragraphurl.html
deleted file mode 100644
index e772594..0000000
--- a/metadata/paragraphurl.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<body><p>
-WindowBuilder is composed of SWT Designer and Swing Designer and makes it very easy to create Java GUI applications without spending a lot of time writing code. Use the WYSIWYG visual designer and layout tools to create simple forms to complex windows; the Java code will be generated for you. Easily add controls using drag-and-drop, add event handlers to your controls, change various properties of controls using a property editor, internationalize your app and much more.
-</p></body>
\ No newline at end of file
diff --git a/pages/_index.html b/pages/_index.html
index 6a9348c..3bdbacf 100755
--- a/pages/_index.html
+++ b/pages/_index.html
@@ -1,27 +1,10 @@
-
-<!-- The WB initial "big buttons" contents.-->
-<div id="bigbuttons">
-<h3>Primary Links</h3>
-<ul>
-	<li><a id="buttonDownload" href="download.php" title="Download">Eclipse
-	Distribution, Update Site, Dropins</a></li>
-	<li><a id="buttonDocumentation" href="documentation.php"
-		title="Documentation">Tutorials, Examples, Videos, Reference Documentation</a></li>
-	<li><a id="buttonSupport" href="support.php" title="Download">Bug
-	Tracker, Newsgroup, Professional Support</a></li>
-	<li><a id="buttonInvolved" href="involved.php" title="Getting Involved">CVS,
-	Workspace Setup, Wiki, Committers</a></li>
-</ul>
-</div>
-<br>
-<br>
-
 <div id="midcolumn">
-<h3>WindowBuilder - is a powerful and easy to use bi-directional Java GUI designer</h3>
+<h3>WindowBuilder | A powerful, easy-to-use, bi-directional Java GUI designer</h3>
 
 <div id="introText">
 
 <p>
+<a href='https://projects.eclipse.org/projects/tools.windowbuilder'><img src='https://projects.eclipse.org/sites/default/files/windowbuilder_0.png' style='float:left; padding-right: 10px;'></a>
 WindowBuilder is composed of SWT Designer and Swing Designer and makes it very easy to create Java GUI applications 
 without spending a lot of time writing code. Use the WYSIWYG visual designer and layout tools to create simple forms 
 to complex windows; the Java code will be generated for you. Easily add controls using drag-and-drop, add event handlers 
@@ -34,9 +17,9 @@
 </p>
 <p>
 Generated code doesn't require any additional custom libraries to compile and run: all of the generated code can be 
-used without having WindowBuilder Pro installed. WindowBuilder Pro can read and write almost any format and reverse-engineer 
-most hand-written Java GUI code. It also supports free-form code editing (make changes anywhere...not just in special areas) 
-and most user re-factorings (you can move, rename and subdivide methods without a problem).
+used without having WindowBuilder installed. WindowBuilder can read and write almost any format and reverse-engineer 
+most hand-written Java GUI code. It also supports free-form code editing (make changes anywhere, not just in special areas) 
+and most user refactorings (you can move, rename and subdivide methods without a problem).
 </p>
 
 </div>
@@ -51,4 +34,3 @@
 </video>
 </div>
 </div>
-
diff --git a/project-info/executive-summary.html b/project-info/executive-summary.html
deleted file mode 100755
index e69de29..0000000
--- a/project-info/executive-summary.html
+++ /dev/null
diff --git a/project-info/home-page-one-liner.html b/project-info/home-page-one-liner.html
deleted file mode 100755
index e9b2050..0000000
--- a/project-info/home-page-one-liner.html
+++ /dev/null
@@ -1 +0,0 @@
-Phoenix
\ No newline at end of file
diff --git a/project-info/maillist b/project-info/maillist
deleted file mode 100755
index c191d00..0000000
--- a/project-info/maillist
+++ /dev/null
@@ -1 +0,0 @@
-::epf-dev::Mailing list for the Eclipse Process Framework Project.
\ No newline at end of file
diff --git a/project-info/newsgroup b/project-info/newsgroup
deleted file mode 100755
index 4cb94f6..0000000
--- a/project-info/newsgroup
+++ /dev/null
@@ -1 +0,0 @@
-::eclipse.technology.epf::The Eclipse Process Framework (EPF) aims at producing a customizable software process enginering framework, with exemplary process content and tools, supporting a broad variety of project types and development styles. Want to know more? See the EPF home page.
\ No newline at end of file
diff --git a/project-info/project-info.xml b/project-info/project-info.xml
deleted file mode 100755
index c3bf39f..0000000
--- a/project-info/project-info.xml
+++ /dev/null
@@ -1,198 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<project>
-  <!--
-     - This example is annotated to be instructive. In order to be instructive, the
-     - example is a mish-mash of information from a variety of projects. Obviously, 
-     - when you write the project-info.xml file for your project, the file will 
-     - contain information only about your one project.
-    -->
-  <!--
-     - Unless otherwise specified, all URLs are to be specified using rooted relative
-     - paths. In other words:
-     -    CORRECT: "/webtools/foo/bar.php"
-     -    INCORRECT: "foo/bar.php"
-     -    INCORRECT: "http://www.eclipse.org/webtools/foo/bar.php"
-    -->
-  
-  <!--
-     - Each Eclipse project as an official name, e.g., 
-     - "AJDT - AspectJ Development Tools Project" and a foundation database 
-     - key, e.g., "technology.ajdt". These are stored in an Eclipse Foundation
-     - database; You can override the name stored on the database by filling 
-     - the <name/> tag
-    -->
-  <name>Phoenix Project</name>
-    
-  <!--     
-     - Each project can also have a short name to be used in HTML lists and 
-     - other horizontally challenged places.
-    -->
-  <short-name>Phoenix</short-name>
-  
-  <!--
-     - Each Eclipse project has one or more Bugzilla products and components.
-     - Some projects also have a separate web page describing how to submit
-     - a bug, how bugs are prioritized, and other useful information.
-     - The <bugzilla> collects this information.
-     - 
-     - <bugzilla url="..."> <product name="..."/> ... </bugzilla>
-     - The url is optional; if absent, the url will default to the Bugzilla
-     - page of the first product. Multiple <product>s are allowed.
-    -->
-  <bugzilla>
-    <product name="Phoenix"/>
-  </bugzilla>
-
-  <!--
-     - Committers and non-committer Contributors are the raison d'etre of 
-     - an Eclipse project, thus each project should list and acknowledge these
-     - developers. Some of the Committers are 'special' in the sense that
-     - they are the project leaders.  The <team> element contains the 
-     - URL of the project's pages listing these important people.
-    -->
-  <team url="/phoenix/about.php" />
-  
-  <!--
-     - The source code of each Eclipse project is stored in CVS. Eclipse maintains
-     - a number of CVS repositories, thus the <cvs> element specifies which
-     - CVS repository and (if applicable) which root path stores this project's
-     - source code.
-     -
-     - A top-level project typically specifies only the repository:
-     -     <cvs repository="/cvsroot/tptp"/>
-     - A sub-project includes the root path as well:
-     -     <cvs repository="/cvsroot/technology/">
-     -       <module path="org.eclipse.higgins" />
-     -     </cvs>
-    -->
-  <cvs repository="/cvsroot/technology/">
-    <module path="org.eclipse.phoenix" /> 
-  </cvs>
-
-  <!--
-     - The description of an Eclipse project shows up in many places: the
-     - project's home page, perhaps the /projects/ page listing all the
-     - top-level projects, in the Roadmap, and so on. Some of the descriptions
-     - are separate HTML files (such as those described in 
-     - http://phoenix.eclipse.org/projects/dev_process/project-status-infrastructure.php).
-     - It would be nice 
-     - This <description> element contains two additional descriptions.
-     -    1. The optional <description url="..."> points to a web page with a larger
-     -       description of the entire project. 
-     -    2. The required <description paragraph-url="..."> points to a file
-     -       containing a couple of simple HTML paragraphs describing the project. 
-     -       This file is often stored in the /project-info/ directory, thus the
-     -       url would be something like "/tptp/project-info/description.html".
-    -->
-  <description url="/phoenix/about.php"
-     paragraph-url="/phoenix/project-info/project-page-paragraph.html"/>
-  
-  <!--
-     - In addition to the description, each Eclipse project is also required to
-     - provide an up-to-date status summary. "Up to date" means revised at least
-     - quarterly. 
-     - The required <summary paragraph-url="..."> points to a file
-     - containing a number of simple HTML paragraphs with an executive summary
-     - of the project status.
-     - This file is often stored in the /project-info/ directory, thus the
-     - url would be something like "/technology/project-info/executive-summary.html".
-    -->
-  <summary paragraph-url="/technology/phoenix/project-info/executive-summary.html"/>
-
-  <!--
-     - It is important to help new users get started with an Eclipse project
-     - because most Eclipse projects are solving some difficult technical
-     - problem and thus are somewhat complex. The <getting-started> element
-     - points to a web page on the project's site that describes how to
-     - get started using and extending the project's tools and frameworks.
-    -->
-  <getting-started url="/phoenix/docs/" />
-  
-  <!--
-     - It is also important to help new contributors get started with an Eclipse project.
-     - Most Eclipse projects have interesting/complex development environment
-     - setups or to-do lists. The <contributing> element
-     - points to a web page on the project's site that describes how to
-     - get started developing on, and contributing to, the project.
-    -->
-  <contributing url="/phoenix/docs/" />
-  
-  <!--
-     - Each Eclipse project is required to maintain a current Project IP Log.
-     - See http://www.eclipse.org/projects/dev_process/project-log.php
-     - The <ip-log> contains the URL of that log.  If the project has
-     - other legal information as well, it can use the <legal> element
-     - instead and then include the IP Log information on the Legal web page.
-    -->
-  <ip-log url="" /> 
-  <legal url="" /> 
-
-  <!--
-     - Each Eclipse project has one or more mailing lists.
-     - Some projects also have a separate web page describing these lists
-     - while others rely on the main Eclipse mailing lists page.
-     - 
-     - <mailing-lists url="..."> <list name="..."/> ... </mailing-lists>
-     - The url is optional; if absent, the url will default to the Eclipse
-     - mailing lists page. Multiple <lists>s are allowed.
-     -
-     - Note that currently mailing lists must be redundantly listed in
-     - the separate project-info/maillist file as well.
-    -->
-  <mailing-lists>
-    <list name="phoenix-dev"/>
-  </mailing-lists>
-  
-  <!--
-     - Each Eclipse project has one or more newsgroups.
-     - Some projects also have a separate web page describing these lists
-     - while others rely on the main Eclipse newsgroups page.
-     - 
-     - <newsgroups url="..."> <newsgroup name="..."/> ... </newsgroups>
-     - The url is optional; if absent, the url will default to the Eclipse
-     - newsgroups page. Multiple <newsgroups>s are allowed.
-    -->
-  <newsgroups>
-    <newsgroup name="eclipse.technology.phoenix" />
-  </newsgroups>
-  
-  <!--
-     - The dashboard attempts to measure the liveness of a project in many
-     - ways including the traffic on the mailing lists and newsgroups. There
-     - are other places where significant project-related traffic can occur
-     - including blogs and articles. When listed here, the dashboard incorporates
-     - them into the liveness measure (or rather, "will incorporate").
-    -->
-  <articles>
-  </articles>
-  
-  <blogs>
-  </blogs>
-  
-  <!--
-     - Each Eclipse project needs to have a plan both for its internal purposes
-     - (to guide development and resource allocation) and for the larger Eclipse
-     - community and ecosystem to understand what will be delivered and when
-     - it will be delivered.
-    -->
-  <project-plan url="" />
-
-  <!--
-     - Each Eclipse project creates (optional) nightly builds and milestone builds,
-     - but the important builds of a project are the releases. This section of the
-     - status file records the completed (past) and scheduled (future) releases of
-     - the project. 
-     - The status, name, and date are required attributes. The download is optional
-     - and only valid for completed releases; the plan is optional and valid for
-     - all releases.  The three valid types of releases are, in order of ascending 
-     - uncertainity: "completed", "scheduled", and "tentative".  Dates can be
-     - specified as particular day DD/MM/YYYY (e.g., 22/03/2005) or a particular
-     - month MM/YYYY (e.g., 10/2005), or a quarter NQYYYY (e.g., 3Q2005). Obviously
-     - completed releases should include the exact day the release was completed.
-     -
-     - In the following example, we have three completed, two scheduled, and one 
-     - tentative release.
-    -->
-  <releases>
-  </releases>
-</project>
\ No newline at end of file
diff --git a/project-info/project-page-paragraph.html b/project-info/project-page-paragraph.html
deleted file mode 100755
index 184c8df..0000000
--- a/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1 +0,0 @@
-The purpose of this project is to improve the usability of the eclipse.org site, improving productivity and reducing duplication of effort across the eclipse user community.
\ No newline at end of file
diff --git a/style.css b/style.css
index 9fc1781..05a5cd3 100755
--- a/style.css
+++ b/style.css
@@ -1,11 +1,7 @@
 @CHARSET "UTF-8";
-#novaContent {
-	background: url("images/backgroundMain.png") no-repeat;
-	padding-top: 210px;
-}
 
-#midcolumn {
-	width: 640px;
+.legacy-page #midcolumn {
+	width: 73%;
 	padding: 0 10px 10px 10px;
 }
 
@@ -26,12 +22,6 @@
 	text-decoration: underline;
 }
 
-
-#novaContent {
-	background: url("images/backgroundMain.png") no-repeat white;
-	padding-top: 170px;
-}
-
 #introText p.left {
 	width: 48%;
 	float: left;
@@ -42,148 +32,14 @@
 	float: right;
 }
 
-#feature_1 {
-	float: left;
-	width: 30%;
-	margin-right: 3%;
-}
-
-#feature_2 {
-	float: left;
-	width: 30%;
-	margin-right: 3%
-}
-
-#feature_3 {
-	float: left;
-	width: 30%;
-}
-
-#feature_4 {
-	clear: both;
-	float: left;
-	width: 63%;
-	margin-right: 3%;	
-}
-
-#feature_more {
-	float: left;
-	width: 30%;
-}
-	
-#bigbuttons {
-	position: relative;
-	left: 420px;
-	top: -170px;
-}
-#bigbuttons h3{
-	visibility: hidden;
-}
-
-#bigbuttons a {
-}
-
-#bigbuttons ul li {
-   display:block;
-   list-style-type:none;
-   background-color: red;
-   padding: 0;
-   margin: 0;
-}
-
-#bigbuttons a:hover {
-	text-decoration: none;
-}
-
-#bigbuttons a {
-   display: block;
-   height:77px; width:250px;
-   padding: 0;
-   margin: 20px;
-   text-indent: -9000px;
-   position: absolute;
-}
-
-#buttonDownload {
-   background:transparent url("images/buttonDownload.png") no-repeat 0 0;
-   top: 0px;
-   left: 0px;
-}
-
-#buttonDownload:hover {
-   background:transparent url("images/buttonDownload_sel.png") no-repeat 0 0;
-}
-
-   
-#buttonDocumentation {
-   background:transparent url("images/buttonDocumentation.png") no-repeat 0 0;
-   top: 87px;
-   left: 0px;
-}
-
-#buttonDocumentation:hover {
-   background:transparent url("images/buttonDocumentation_sel.png") no-repeat 0 0;
-}
-
-#buttonSupport {
-   background:transparent url("images/buttonSupport.png") no-repeat 0 0;
-   top: 0px;
-   left: 280px;
-}
-
-#buttonSupport:hover {
-   background:transparent url("images/buttonSupport_sel.png") no-repeat 0 0;
-}
-
-#buttonInvolved {
-   background:transparent url("images/buttonInvolved.png") no-repeat 0 0;
-   top: 87px;
-   left: 280px;
-}
-
-#buttonInvolved:hover {
-   background:transparent url("images/buttonInvolved_sel.png") no-repeat 0 0;
-}
-
-#bigbuttons a * {
-	visibility: hidden;
-}
-
-#headlines {
-}
-
-#headlines ul li {
-	margin: 0 0;
-	list-style-type: none;
-	list-style-image: none;
-}
-
-	
-#headlines div.title {
-	display: inline;
-	margin-right: 0.5em;
-}
-
-#headlines div.meta {
-	display: inline;
-	color: #444444;
-	font-size: smaller;  
-}
-
-#headlines div.item {
-	display: block;
-	}
-	
 #screencast {
 	margin-bottom: 10px;
 }
 
-#newAndNoteworthy a {
-   display: block;
-   width:218px; 
-   height:51px;
-   padding: 0;
-   text-indent: -9000px;
-   background:transparent url("images/bannerNewAndNoteworthy08M4.png") no-repeat 0 0;
-   margin-top: 10px;
+#downloads-table tr td {
+	padding: 2pt;
+}
+
+#downloads-table tr th {
+	padding: 2pt;
 }
\ No newline at end of file
diff --git a/support.php b/support.php
index bde77ba..0fb5c94 100644
--- a/support.php
+++ b/support.php
@@ -10,16 +10,20 @@
  *    
  *******************************************************************************/
 
-	$pageTitle 		= "WindowBuilder - Support";
+require_once ('_projectCommon.php');
+$pageTitle 		= "WindowBuilder | Support";
+$Breadcrumb->removeCrumb($Breadcrumb->getCrumbCount() - 1);
+$Breadcrumb->addCrumb("Support", "support.php", "_self");
 
-	$html  = <<<EOHTML
+$html  = <<<EOHTML
 <div id="midcolumn">
-	<h2>$pageTitle</h2>
-	<p><a href="http://www.eclipse.org/forums/index.php?t=thread&frm_id=214&S=7625d8ab46b00e13497393e863841f04">Eclipse forum</a></p>
-
+<h2>$pageTitle</h2>
+<p>
+For questions and problem, use <a href="https://github.com/eclipse/windowbuilder/issues">Github Eclipse WindowBuilder Issues</a>.
+</p>
 </div>
 EOHTML;
 
-	# Generate the web page
-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+# Generate the web page
+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html, $Breadcrumb);
 ?>
\ No newline at end of file