*** empty log message ***
diff --git a/article-template/Article-Title/article.html b/article-template/Article-Title/article.html
new file mode 100644
index 0000000..447925c
--- /dev/null
+++ b/article-template/Article-Title/article.html
@@ -0,0 +1,89 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+<head>
+<title>[Your title goes here]</title>
+<meta http-equiv="Content-Type"
+	content="text/html; charset=windows-1252">
+<link href="../article.css" type="text/css" rel="stylesheet">
+</head>
+<body>
+
+<h1>[Your title goes here]</h1>
+<div class="summary">
+<h2>Summary</h2>
+<p>In this article, ...</p>
+<div class="author">By [Your name], [Your affiliation]</div>
+<div class="copyright">Copyright &copy; [Year] [Your affiliation].</div>
+<div class="date">January 28, 2007</div>
+</div>
+
+<div class="content">
+<h2>Introduction</h2>
+<p>Please use strict, but simple, HTML formatting. Be sure to wrap
+your paragraphs in &lt;p&gt;&lt;/p&gt; tags.</p>
+
+<h2>How to present code</h2>
+<p>When including code snippets use preformatted style as below. In
+general try to avoid using specific fonts.</p>
+
+<pre>public void createPartControl(Composite parent) { /* [1] */
+	label = new Label(parent, 0); 
+	label.setText("Hello World"); / * [2] */
+	getViewSite().getPage().addSelectionListener(this);
+}</pre>
+
+<p>Consider annotating your code, if necessary using comments
+appropriate for the language.</p>
+
+<p>In the preceding example, [1] is the signature of the method and
+[2] sets text of the label.</p>
+
+<h2>Other useful text samples</h2>
+<p>The <i>images/</i> subdirectory of this template also contains
+several images you may want to use. Below are the images and a simple
+example of their use.</p>
+<p>1) An image to indicate a tip for the user.</p>
+<blockquote>
+<p><img src="images/tip.gif" width="62" height="13"> Always
+put your snowman in the freezer before summer.</p>
+</blockquote>
+<p>2) An image to indicate a point in the article where the user may
+want to run a quick test to see their progress.</p>
+<blockquote>
+<p><img src="images/tryit.gif" width="61" height="13"> Choose
+Instant Article from the pop-up menu and confirm our article creation
+wizard opens.</p>
+</blockquote>
+<p>3) Images to indicate platform specific behavior.</p>
+<blockquote>
+<p><img src="images/win_only.gif" width="49" height="13"> On
+Windows the splash screen is represented using BMP files.</p>
+<p><img src="images/linux_only.gif" width="49" height="13"> On
+Linux the splash screen is represented using XPM files.</p>
+</blockquote>
+<h2>Source Code</h2>
+<p>Always include a link to your zip file containing the source
+code. You may want to include a section titled <b>Source Code</b> (as we
+have done here) with the text shown below. Remember to ensure the zip
+file does <b>not</b> include eclipse/plugins in the path of files; it
+should only include only your plug-in directory name. Users will assume
+they can unzip the plug-in directly into their <i>plugins </i>directory.
+Here is some sample text:</p>
+<p>To run the example or view the source code for this article unzip
+<a href="your_filename.zip">your_filename.zip</a> into your <i>plugins/
+</i>subdirectory.</p>
+<p>&nbsp;</p>
+<h2>Did you remember?</h2>
+<p>Don't remember to update the following:</p>
+<ul>
+	<li>&lt;title&gt;....&lt;/title&gt; of the article - this is
+	typically shown in the tile of a web browser</li>
+	<li>author &amp; company name</li>
+	<li>date</li>
+	<li>copyright text</li>
+</ul>
+<p>Did you remember to avoid using specific fonts - try to only use
+the main styles (performatted, italic, H1, H2 etc.).<br>
+</p>
+</body>
+</html>
diff --git a/article-template/Article-Title/images/linux_only.gif b/article-template/Article-Title/images/linux_only.gif
new file mode 100644
index 0000000..7c135cf
--- /dev/null
+++ b/article-template/Article-Title/images/linux_only.gif
Binary files differ
diff --git a/article-template/Article-Title/images/tip.gif b/article-template/Article-Title/images/tip.gif
new file mode 100644
index 0000000..77b2451
--- /dev/null
+++ b/article-template/Article-Title/images/tip.gif
Binary files differ
diff --git a/article-template/Article-Title/images/tryit.gif b/article-template/Article-Title/images/tryit.gif
new file mode 100644
index 0000000..f4927a4
--- /dev/null
+++ b/article-template/Article-Title/images/tryit.gif
Binary files differ
diff --git a/article-template/Article-Title/images/win_only.gif b/article-template/Article-Title/images/win_only.gif
new file mode 100644
index 0000000..895f9ca
--- /dev/null
+++ b/article-template/Article-Title/images/win_only.gif
Binary files differ
diff --git a/article-template/article.css b/article-template/article.css
new file mode 100644
index 0000000..13e6769
--- /dev/null
+++ b/article-template/article.css
@@ -0,0 +1,171 @@
+h1 {
+	font-family: sans-serif;
+	font-size: 150%
+}
+
+.summary {
+	margin-left: 30px;
+	margin-right: 30px;
+	border-style: solid;
+	border-width: 1px;
+	padding: 10px 10px 10px 10px;
+	font-family: serif;
+	font-size: 110%;
+}
+
+.summary h2 {
+	font-size: 100%;
+	font-weight: bold;
+	margin-top: 5px;
+}
+
+.summary p {
+	font-family: serif;
+	font-size: 100%;
+}
+.author {
+	margin-top: 10px;
+	font-weight: bold;
+}
+
+.date {
+	font-size: 80%;
+}
+
+.copyright {
+	font-size: 80%;
+}
+
+.content {
+	font-family: serif;
+	font-size: 110%;
+	margin-top: 10px;
+	margin-bottom: 10px;
+	font-family: serif;
+	font-size: 110%;
+}
+
+.content h1 {
+	font-family: sans-serif;
+}
+
+.content h2 {
+	font-family: sans-serif;
+	font-size: 130%;
+	font-weight: bold;
+}
+
+.content h3 {
+	font-family: sans-serif;
+	font-size: 120%;
+	font-style: italic;
+}
+
+.content p {
+	font-family: serif;
+	font-size: 110%;
+}
+
+.content ul {
+	margin-left: 20px;
+	margin-top: 5px;
+	margin-bottom: 5px;
+}
+
+.content ol {
+	margin-left: 20px;
+	margin-top: 5px;
+	margin-bottom: 5px;
+}
+
+.content li {
+	font-family: serif;
+	font-size: 110%;
+}
+
+table {
+	border-style: solid;
+	border-width: 1;
+	border-spacing: 5px;
+	border-collapse: collapse;	
+	font-family: serif;
+	font-size: 100%;
+}
+
+th {
+	border-style: solid;
+	border-width: 1px;
+	text-align: left;
+	padding: 2px 5px 2px 5px;
+}
+
+td {
+	border-style: solid;
+	border-width: 1px;
+	text-align: left;
+	padding: 2px 5px 2px 5px;
+}
+
+.sidebar {
+	font-family: serif;
+	font-size: 100%;
+	margin: 1em 5em 1em 5em;
+	padding-top: 0px;
+	padding-left: 5px;
+	font-family: serif;
+	font-size: 110%;
+	border-style: solid;
+	border-width: 1px;
+	background: #e4e3f1;
+}
+
+.sidebar p {
+	margin-top: 0.5em;
+	margin-bottom: 0.5em;
+	font-family: serif;
+	font-size: 90%;
+}
+.sidebar ul {
+	margin-left: 20px;
+	margin-top: 5px;
+	margin-bottom: 5px;
+}
+
+.sidebar ol {
+	margin-left: 20px;
+	margin-top: 5px;
+	margin-bottom: 5px;
+}
+
+.sidebar li {
+	font-family: serif;
+	font-size: 90%;
+}
+
+.notices {
+	border-style: solid;
+	border-width: 0px;
+	border-top-width: 1px;
+	margin-top: 10px;
+	margin-bottom: 10px;
+	font-family: serif;
+	font-size: 100%;
+}
+
+.figure {
+	margin: 0 50px 0 50px;
+	text-align: center;
+}
+
+.figure table {
+	margin-left:auto; margin-right:auto;
+}
+
+.caption {
+	text-align: center;
+	font-size: 90%;
+}
+
+.menu-selection {
+	font-style: italic;
+}
\ No newline at end of file
diff --git a/article-template/readme.txt b/article-template/readme.txt
new file mode 100644
index 0000000..f2f3a03
--- /dev/null
+++ b/article-template/readme.txt
@@ -0,0 +1,31 @@
+This directory structure contains everything you need to get started on your article.
+
+
+Steps
+=====
+
+1.	Replace "Title" the folder name "Article-Title" to be the name of your article
+
+2.	You should work exclusively in the above folder. 
+	Do not add any files to either the main root directory.
+	If you have images for your article be sure to place them in your 
+	article directory (formerly called rename-this-and-work-in-here) or a subdirectory.
+
+3.	Update the following
+	-	<title>....</title> of the article  - this is typically shown in the tile of a web browser
+	-	author & company name
+	-	date
+	-	copyright text in the top right corner
+
+	
+4.	Write your content. Use the most plain XHTML possible. Avoid setting specific font or
+	messing with color. Use <strong></strong> or <em></em> where possible. Conform to the provided
+	<div></div> classes.
+	Tip:	Avoid using specific fonts. You can use styles (heading, preformatted, bold, italic).
+
+
+5.	Remember to include a zip file containing your code.
+	This allows readers to quickly try out your examples.
+	
+6.	ZIP up the Article directory and attach it to your bugzilla entry.
+