var hoofdMenu = new HoofdMenu();

var homeMenu = new HoofdMenuItem("Home", "home.html");
hoofdMenu.add(homeMenu);

var overMenu = new HoofdMenuItem("Over Golbach", null);
hoofdMenu.add(overMenu);
overMenu.add(new SubMenuItem("Adres gegevens", "adres.html"));

var zalenMenu = new HoofdMenuItem("Zalen", null);
hoofdMenu.add(zalenMenu);
zalenMenu.add(new SubMenuItem("Caf&eacute;", "cafe.html"));
zalenMenu.add(new SubMenuItem("Restaurant", "restaurant.html"));
zalenMenu.add(new SubMenuItem("Serre", "serre.html"));
zalenMenu.add(new SubMenuItem("Bowling", "bowling_tarieven.html"));
zalenMenu.add(new SubMenuItem("Kegelen", "kegelen_tarieven.html"));
zalenMenu.add(new SubMenuItem("Biljartgolf", "biljartgolf_informatie.html"));
zalenMenu.add(new SubMenuItem("Terras/Speeltuin", "speeltuin_terras.html"));

var etenMenu = new HoofdMenuItem("Eten bij golbach", null);
hoofdMenu.add(etenMenu);
etenMenu.add(new SubMenuItem("Menukaart", "menukaart.html"));
etenMenu.add(new SubMenuItem("Diners", "diners.html"));
etenMenu.add(new SubMenuItem("Buffet", "buffet.html"));
//etenMenu.add(new SubMenuItem("Bollejaap", "bollejaap.html"));
etenMenu.add(new SubMenuItem("Barbecue", "barbecue.html"));
