SID Import Tool
diff --git a/downloads/allDownloads.php b/downloads/allDownloads.php
index a4573c5..3cf3e1e 100644
--- a/downloads/allDownloads.php
+++ b/downloads/allDownloads.php
@@ -75,6 +75,7 @@
 		   	<li><a href="http://wiki.eclipse.org/Tigerstripe_Hello_World">Hello World Application</a></li>
 		   	<li><a href="/tigerstripe/downloads/past_releases.php">Past Releases</a></li>
 		   	<li><a href="/tigerstripe/generators">Generators</a></li>
+		   	<li><a href="/tigerstripe/downloads/sid_import_tool.php">SID Import Tool</a></li>
 		    </ul>
  		</div>
  		<div class="sideitem">
diff --git a/downloads/sid_import_tool.php b/downloads/sid_import_tool.php
new file mode 100644
index 0000000..c72dd1f
--- /dev/null
+++ b/downloads/sid_import_tool.php
@@ -0,0 +1,56 @@
+<?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'
+
+#
+# Begin: page-specific settings.  Change these.
+$pageTitle 		= "SID Import Tool";
+$pageKeywords	= "SID";
+$pageAuthor		= "Navid Mehregani";
+# End: page-specific settings
+#
+
+# Paste your HTML content between the EOHTML markers!
+$html = <<<EOHTML
+<div id="maincontent">
+
+<div id="midcolumn">
+<h1>$pageTitle</h1>
+	<div class="homeitem3col">
+		<h3>SID Import Tool </h3>
+		<p>This plug-in facilitates UML2Import of SID into Tigerstripe.  It performs custom name mappings and filtering.  Use the following update site 
+		to download this plug-in.</p>
+		<ul>
+			<li><b>http://download.eclipse.org/technology/tigerstripe/updates/thirdparty/</b></li>
+		</ul>
+		Please click <a href="http://wiki.eclipse.org/Tigerstripe_Download_instructions">here</a> for more details about using update sites.
+		
+		
+			</div>
+	</div>
+	<div id="rightcolumn">
+		<div class="sideitem">
+		   <h6>Related Links</h6>
+		   <ul>
+		   	<li><a href="/tigerstripe/downloads/allDownloads.php">New Releases</a></li>
+		   	</ul>
+ 		</div>
+ 		<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>
+</div>
+EOHTML;
+
+# Generate the web page
+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+
+?>
\ No newline at end of file