Ok Eric, thankyou for the help. I have played abit with the php includes and the styleswitcher. It is a bit confusing even for me to explain what I did so I have uploaded and here is the link. http://mindyourelders.awardspace.com/trial-switcher.php
I have a folder with 3 .inc files in it english.inc german.inc and nav.inc
Here is the code to one php page
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!-- saved from url=(0014)about:internet -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>style switch and includes Testing</title>
<link href="default.css" rel="stylesheet" type="text/css">
<link href="alternate.css" rel="alternate stylesheet" type="text/css" title="alternate">
<script src="styleswitch.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="header"></div>
<div id="navcontainer">
<ul id="navlist">
<?php include("includes/nav.inc"); ?>
</ul>
</div>
<div id="content">
<h1>Speedy Translations - Herzlich willkommen! Welcome!</h1>
<a href="javascript:chooseStyle('none', 60)">English</a>
<a href="javascript:chooseStyle('alternate', 60)">German</a>
<div id="English"><?php include("includes/english.inc"); ?></div>
<div id="German"><?php include("includes/german.inc"); ?></div>
</div>
<div id="footer">
<p><strong>© Speedy Translations<br>
Tel:</strong> (02635 / 921140) <strong>Email</strong> <a href="mailto:info@int-veen.de">info@speedy-translations.de</a><br>
</p>
</div>
</div>
</body>
</html>
