// Menu Generator (c) 2002 Kelly Birch
// This script may not be reproduced without permission

// Menu for the root directory

var menu = new Array(
"HOME",
"FEATURES",
"ATTRACTIONS",
"FLOOR PLANS",
"LOCATION",
"TESTIMONIALS",
"RATES"
); 

var link = new Array(
"index.html",
"features.html",
"attractions.html",
"plans.html",
"location.html",
"testimonials.html",
"rates.html"
);

// the number of items in the menu array
var menuitem = 7;


