// Create the menu
cMenu = new menu('"Arial Narrow", "Arial", "Helvetica", "Verdana", "sans-serif"');

// Fill it in
cMenu.AddMajorItem("Home", "index.html");
cMenu.InsertSpace();
cMenu.AddMajorItem("About the GSG", "gsgintro.html");
cMenu.InsertSpace();
cMenu.AddMajorItem("Publications", "gsgpub.html");
cMenu.InsertSpace();
cMenu.AddMajorItem("Scenarios", "scenarios.html");
cMenu.AddMinorItem("Description", "scenario_descriptions.html");
cMenu.AddMinorItem("Quantification", "QuantChoices.html");
cMenu.InsertSpace();
cMenu.AddMajorItem("Contact", "gsgcon.html");

// And display it
cMenu.Display();
