<?php



include('lib/header.php');

if ($_GET[content] == "") {
	$content = "home.php";
}
else
{
	$content = $_GET[content];
}

include("content/$content");
include('lib/footer.php');

?>