Habe es jetzt mittels php gelöst.
Also eine index.php in der die Links stehen und dann noch folgendes script das mir den inhalt includet:
<?php
if (!empty($HTTP_GET_VARS['action'])) $action = $HTTP_GET_VARS['action'];
else $action = "home.inc"; // Standard falls keine Auswahl
include ($action);
?>
Links schauenh nun so aus:
Home
funzt ganz gut, Verbesserungsvorschläge?