Add videos

Change-Id: Iee8cc6c93b4ea3c12296606de6d1b125df8ae86b
diff --git a/documentation.php b/documentation.php
index 757a19d..1d265cc 100644
--- a/documentation.php
+++ b/documentation.php
@@ -40,6 +40,7 @@
 			<li><a href="http://www.vogella.de/blog/2009/07/08/modify-eclipse-code/">How to Create a Patch for Subversive, by Lars Vogel</a></li>
 			<li><a href="http://wiki.eclipse.org/Subversive_PDE_Fetch">Subversive PDE Fetch, by Mickael Istria</a></li>						
 		</ul>
+		<iframe width="560" height="315" src="https://www.youtube.com/embed/Szgs3jmo2YU" frameborder="0" allowfullscreen></iframe>
 	</div>
 	
 	<div id="rightcolumn">
diff --git a/documentation/gettingStarted.php b/documentation/gettingStarted.php
index a13cdb7..9bc1fbb 100644
--- a/documentation/gettingStarted.php
+++ b/documentation/gettingStarted.php
@@ -37,6 +37,7 @@
 	<br/>
 <h1>Getting Started</h1>
 	<p>In this part the user can find some basic concepts on Subversion&reg;, general information on Subversive plug-in, integration instructions and the answer for the common questions on the product.</p>
+	<iframe width="560" height="315" src="https://www.youtube.com/embed/Szgs3jmo2YU" frameborder="0" allowfullscreen></iframe>	
 	<p>Also the Subversive architecture, modules and extension points information is included for more experienced users. We hope this information might be quite useful.</p>
 	<p>If you are new to SVN or version control systems please first of all refer to the <a href="gettingStarted/subversion/svn_intro.php">'Subversion&reg; (SVN)'</a>. You'll find there the introduction to Subversion&reg;, information about subversion folders and some useful links, which can help you to get closer to SVN&reg;.</p>
 	<p>First of all the user would like to install the Team plug-in. Before installation the user should familiarize himself with <a href="gettingStarted/aboutSubversive/requirements.php">requirements</a>. To get detailed installation instructions refer to the <a href="gettingStarted/aboutSubversive/install.php">'Subversive installation instructions'</a> topic of this guide part.</p>
diff --git a/videos.php b/videos.php
new file mode 100644
index 0000000..f3cf387
--- /dev/null
+++ b/videos.php
@@ -0,0 +1,49 @@
+<?php

+	set_include_path($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common" . PATH_SEPARATOR . $_SERVER['DOCUMENT_ROOT'] . "/projects" . PATH_SEPARATOR . get_include_path());

+	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

+	$pageTitle 		= "Videos - Eclipse Subversive";

+	$pageKeywords	= "subversive, video, guide, svn, subversion";

+	$pageAuthor		= "Igor Vinnykov";

+	

+	$sidebar = file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/subversive/sidebars/main.php");	

+	

+	// 	# Paste your HTML content between the EOHTML markers!

+$html = <<<EOHTML

+

+	<div id="midcolumn">

+		<h1>Videos</h1>

+		<p>

+			Here you can find the video tutorials created by Subversive team, that explain how to install, configure and use Subversive.

+		</p>

+		<h2>How to Install Subversive</h2>

+		<p>

+			Learn how to install Subversive and its connectors.

+		</p>

+		<iframe width="560" height="315" src="https://www.youtube.com/embed/04L4rkykWZw" frameborder="0" allowfullscreen></iframe>

+		<h2>Getting Started with Subversive</h2>

+		<p>

+			Learn how to use the basic features of Subversive SVN plug-in for Eclipse to checkout a project from SVN, commit changes, get updates and check the changes history.

+		</p>

+		<iframe width="560" height="315" src="https://www.youtube.com/embed/Szgs3jmo2YU" frameborder="0" allowfullscreen></iframe>

+	</div>

+	

+	<div id="rightcolumn">

+        $sidebar		

+	</div>	

+

+EOHTML;

+		

+

+	# Generate the web page

+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);

+?>
\ No newline at end of file