Try using a server side language, for instance PHP.
PHP Code:
<?php
#This script will require the file to be named .php, .phtml, or some other sort
#of PHP extension. The variables will be accessed through the URL, as in
#http://mymtvernon.com/?menu=dinner
#The default menu is what will be loaded if they go to http://mymtvernon.com
#without the variable set.
$menu = $_GET['menu'];
switch ($menu) {
case 'dinner' : include('path/to/dinner.php'); break;
case 'lunch' : include('path/to/lunch.php'); break;
}
//if variable is not set, include a default menu
if(!isset($_GET['menu'])) {
include('');//change that to the path to your default menu
}
?>
Also, on a side note, tables for layout is a bad idea, as are <b> tags.
Try making a layout with CSS using float, margin, and clear. Instead of the <b> tags in the menu, you should use headings and style them to your liking.
For some reason you have an XHTML 1.0 Transitional (eww) doctype as well as an HTML 4.01 Transitional (even more eww) doctype, the latter is inside your <html> tag. You should choose one or the other.
Bookmarks