<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Flash site - </title>
<style type="text/css">
body {background: url('bac.png') center top repeat-y; background-color: #9ad7e9;}
div#container {margin: 0 auto; width: 651px;}
div#content {float: right; width: 472px;}
div#menu {float:left; width: 165px;}
div#inhoud {overflow: hidden; }
div.menuheader {height: 7px; width: 165px; background: url('menuheader.png') center top no-repeat; font-size: 1%;}
div.menucontent {width: 165px; background: url('menubac.png') center top repeat-y;}
div.menutekst {padding-left: 8px; padding-right: 8px;}
div.menufooter {width: 165px; height: 7px; background: url('menufooter.png') center top no-repeat;}
div.contentheader {height: 7px; width: 472px; background: url('contentheader.png') center top no-repeat; font-size: 1%;}
div.contentcontent {width: 472px; background: url('contentbac.png') center top repeat-y;}
div.contenttekst {padding-left: 8px; padding-right: 8px;}
div.contentfooter {width: 472px; height: 7px; background: url('contentfooter.png') center top no-repeat; padding-bottom: 6px;}
</style>
</head>
<body>
<div id="container">
<div id="inhoud">
<div id="menu">
<div class="menuheader"></div>
<div class="menucontent">
<div class="menutekst">
<?php
switch ($_GET['index']) {
case 'nieuws':
nieuws.php
break;
case 'projecten':
projecten.php
break;
case 'hulp':
hulp.php
break;
case 'contact':
contact.php
break;
include($_GET['index'].'.php');
break;
case '';
include('404fout.php');
break;
default:
index.php
break;
}
?>
</div>
</div>
<div class="menufooter"></div>
</div>
<div id="content">
<div class="contentheader"></div>
<div class="contentcontent">
<div class="contenttekst">
<center>Welkom op gmgoodies.nl! De flash site voor jou!</center>
</div>
</div>
<div class="contentfooter"></div>
<div class="contentheader"></div>
<div class="contentcontent">
<div class="contenttekst">
Welkom op gmgoodies.nl, De flash site voor jou!<br>
Aan de site word nog druk gehamerd ;)<br>
</div>
</div>
<div class="contentfooter"></div>
</div>
</div>
</div>
</body>
</html>