' . $item['label'] . ' ';
// The in the line above can be removed when using a fixed width style in the .css file.
}
}
if ($page==HOME_PAGE && !strstr($_SERVER['REQUEST_URI'], "&")) // TODO: The second clause is pretty cheap...
$homesel = 'class="selectedMenu"';
else
$homesel = "";
ob_start(function($output) {
global $pageTitle;
global $htmlHead;
$output = '
' . $pageTitle . ($pageTitle == "" ? "" : " - ") . PAGE_NAME . '
' . $htmlHead . '
' . $output;
return $output;
});
?>