UPDATED: new try
diff --git a/index.php b/index.php
index 021d9ee..7845294 100755
--- a/index.php
+++ b/index.php
@@ -32,4 +32,4 @@
 	$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
 
 ?>
-Next step again
\ No newline at end of file
+Path this time
\ No newline at end of file
diff --git a/pages/template.html b/pages/template.html
index f0a6241..6e31377 100644
--- a/pages/template.html
+++ b/pages/template.html
@@ -15,15 +15,15 @@
 <div id="midcolumn">
 <?php
 	if ($_GET['section'] == "support") {
-		$html = get_include_contents('support.html');
-	if ($html == false) {
-		$html = "Error! Couldn't load file support.html";
-	}
+		$html = get_include_contents('pages/support.html');
+		if ($html == false) {
+			$html = "Error! Couldn't load file support.html";
+		}
 	} else {
-		$html = get_include_contents('_index.html');
-	}
-	if ($html == false) {
-		$html = "Error! Couldn't load file _index.html";
+		$html = get_include_contents('page/_index.html');
+		if ($html == false) {
+			$html = "Error! Couldn't load file _index.html";
+		}
 	}
 	echo $html;
 ?>