//  The array below contains all the info necessary to draw the menus.

//  Each top level menu item is represented by 5 parameters:
//    Item text
//    Item link
//    Item width (in px)
//    Subitem's width (in px) or 0 to not force a width
//    Array of subitems (each containing a text,link pair)

var CHM_MenuData = [
  "About Us", "http://www.computerhistory.org/about_us.html", 121, 121,
    ["Who We Are", "http://www.computerhistory.org/about/",
     "Visit",      "http://www.computerhistory.org/about/tour/",
     "Directions", "http://www.computerhistory.org/about/directions/",
     "Contact Us", "http://www.computerhistory.org/contact/",
     "Press Room", "http://www.computerhistory.org/about/press_relations/",
     "Venue",      "http://www.computerhistory.org/about/rental/",
     "Jobs",       "http://www.computerhistory.org/about/jobs/",
     "Volunteer",  "http://www.computerhistory.org/volunteers/"
    ],

  "Exhibits", "http://www.computerhistory.org/exhibits/", 118, 0,
    ["Timeline 1939 to 1994",           "http://www.computerhistory.org/timeline/",
     "Visible Storage",                 "http://www.computerhistory.org/virtualvisiblestorage/",
     "PDP-1 Restoration Project",       "http://www.computerhistory.org/pdp-1/",
     "Mastering the Game",              "http://www.computerhistory.org/chess/",
     "Selling the Computer Revolution", "http://www.computerhistory.org/brochures/",
     "Microprocessors 1971 to 1996",    "http://www.computerhistory.org/microprocessors/",
     "Internet History 1962 to 1992",   "http://www.computerhistory.org/internet_history/",
     "Hall of Fellows",                 "http://www.computerhistory.org/fellowawards/index.php?id=6",
     "This Day in History",             "http://www.computerhistory.org/tdih/"
    ],

  "Collection", "http://www.computerhistory.org/collections/", 125, 0,
    ["Research",              "http://www.computerhistory.org/research/",
     "Search the Collection", "http://archive.computerhistory.org/search/",
     "Reading Room",          "http://www.computerhistory.org/collections/readingRoom/",
     "Donate an Artifact",    "http://www.computerhistory.org/collections/donateArtifact/",
     "Image Request",         "http://www.computerhistory.org/research/photo_film.shtml",
     "Oral Histories",        "http://archive.computerhistory.org/search/oh/"
    ],

  "What\'s Happening", "http://www.computerhistory.org/whats.html", 177, 177,
    ["Calendar of Events",  "http://www.computerhistory.org/events/index.php?section=calendar",
     "Speaker Series",      "http://www.computerhistory.org/events/index.php?section=speakerseries",
     "Special Events",      "http://www.computerhistory.org/events/index.php?section=specialevents",
     "Fellow Awards",       "http://www.computerhistory.org/fellowawards/",
     "Publications",        "http://www.computerhistory.org/core/",
     "Join the Discussion", "http://www.computerhistory.org/discussion/",
     "Special Projects",    "http://www.computerhistory.org/events/special_projects/"
    ],

  "Giving", "http://www.computerhistory.org/giving/", 102, 0,
    ["Individual Giving",      "http://www.computerhistory.org/contribute/",
     "Corporate Partners", "http://www.computerhistory.org/contribute/corporate_sponsorship",
     "Museum Campaign",      "http://www.computerhistory.org/contribute/capital/"
    ],

  "About This Site", "http://www.computerhistory.org/site_map.html", 118, 0,
    ["Privacy",         "http://www.computerhistory.org/privacy/",
     "Copyright",       "http://www.computerhistory.org/copyright/",
     "Feedback",        "http://www.computerhistory.org/contact/",
     "Credits",         "http://www.computerhistory.org/credits/",
     "Advanced Search", "http://www.computerhistory.org/search/",
     "Site Map",        "http://www.computerhistory.org/sitemap/"
    ]
];
