diff --git a/tabs.php b/tabs.php
index 20f5448..3d24772 100644
--- a/tabs.php
+++ b/tabs.php
@@ -1,11 +1,13 @@
"/home/",
- "Projects" => "/projects/",
+ $tabs = array(
"About" => "/about/",
- "Resume" => "/resume/",
- "Contact" => "/contact/");
+ "Blog" => "/home/",
+ "Contact" => "/contact/",
+ "Projects" => "/projects/",
+ "Resume" => "/resume/"
+ );
foreach ($tabs as $name => $url) {
if ($url == $_SERVER['REQUEST_URI'])
echo "- ".$name."
";