// Menu Generator (c) 2002 Kelly Birch
// This script may not be reproduced without permission

// Menu for the root directory

var menu = new Array(
"Home",
"Restaurant Menu",
"Take Away",
"Wine List",
"Specials",
"About Us",
"Contact Us"
); 

var link = new Array(
"index.html",
"menu.html",
"takeaway.html",
"wine.html",
"specials.html",
"about.html",
"contact.html"
);

// the number of items in the menu array
var menuitem = 7;

