Initial home page setup
diff --git a/bugs.php b/bugs.php
new file mode 100644
index 0000000..e66bc33
--- /dev/null
+++ b/bugs.php
@@ -0,0 +1,61 @@
+<?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'
+	$pageTitle 		= "SMILA - Bugs";
+	$pageKeywords	= "SMILA, unstructured information management, information logistics, semantic web, framework, platform, eclipse";
+	$pageAuthor		= "Igor Novakovic";
+		
+	# Paste your HTML content between the EOHTML markers!	
+	$html = <<<EOHTML
+
+	<div id="midcolumn">
+		<h1>SMILA - SeMantic Information Logistics Architecture</h1>
+		<h2>Bugs</h2>
+		<p>
+			The best way to report a problem or request a new feature is to use the 
+			Bugzilla system. Here are some useful links to get you started:
+		</p>
+		<div class="homeitem3col">
+			<h3>Bugzilla Links</h3>
+			<ul>
+				<li>
+					<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&product=RAP&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=blocker&bug_severity=critical&bug_severity=major&bug_severity=normal&bug_severity=minor&bug_severity=trivial&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">
+					&nbsp;&nbsp;Show open bug reports</a>
+				</li>
+				<li>
+					<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&product=RAP&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_severity=enhancement&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">
+					&nbsp;&nbsp;Show open enhancement requests</a> 
+				</li>
+				<li>
+					<a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Smila">
+					&nbsp;&nbsp;Report a new bug or enhancement</a>
+					<br>
+					Please search for duplicates first. For bugs provide details on 
+					how to reproduce them and for enhancements please outline the use case.
+				</li>          
+			</ul>
+		</div>
+	</div>
+	  
+	<div id="rightcolumn">
+    	<div class="sideitem">
+       		<h6>Incubation</h6><p>
+       		<div align="center">
+         		<a href="/projects/what-is-incubation.php">
+           		<img align="center" src="/images/egg-incubation.png" border="0"/></a>
+       		</div>
+     	</div>
+	  	<div class="sideitem">
+			<h6>Links</h6>
+			<ul>
+				<li><a href="http://wiki.eclipse.org/SMILA" target="_blank">Project Wiki</a></li>				
+				<li><a href="http://www.eclipse.org/proposals/eilf/SMILA_Creation_Review.pdf" target="_blank">Creation Review</a></li>
+				<li><a href="http://www.eclipse.org/proposals/eilf" target="_blank">Project proposal</a></li>
+			</ul>
+		</div>
+	</div>	
+	
+EOHTML;
+
+
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>