/* VARIABELEN HIERONDER NIET WIJZIGEN */
var menu = new menuGenerator("topmenu");
/* ---------------------------------- */


/* MENU ITEMS HIERONDER WIJZIGEN */

/* HOOFD ITEM 1 */
menu.addMenu("Over Smaak", "../over-smaak/introductie.php");
	/* SUBITEMS */
	menu.addSubMenu("Introductie", "../over-smaak/introductie.php");
	menu.addSubMenu("Contact", "../over-smaak/contact.php");
	menu.addSubMenu("Openingstijden", "../over-smaak/openingstijden.php");

/* HOOFD ITEM 2 */
menu.addMenu("Menu", "../menu/introductie.php");
	/* SUBITEMS */
	menu.addSubMenu("Introductie", "../menu/introductie.php");
	menu.addSubMenu("Koffie", "../menu/koffie.php");
	menu.addSubMenu("Lunchkaart", "../menu/lunchkaart.php");
	menu.addSubMenu("Tapas", "../menu/tapas.php");
	menu.addSubMenu("Bezorging", "../menu/bezorging.php");

/* HOOFD ITEM 3 */
menu.addMenu("Delicatessen", "../delicatessen/introductie.php");
	/* SUBITEMS */
	menu.addSubMenu("Introductie", "../delicatessen/introductie.php");
	menu.addSubMenu("Assortiment", "../delicatessen/assortiment.php");
	menu.addSubMenu("Prijzen", "../delicatessen/prijzen.php");
	menu.addSubMenu("Bezorging", "../delicatessen/bezorging.php");

/* HOOFD ITEM 4 */
menu.addMenu("Traiteur/catering", "../traiteur-catering/introductie.php");
	/* SUBITEMS */
	menu.addSubMenu("Introductie", "../traiteur-catering/introductie.php");
	menu.addSubMenu("Assortiment", "../traiteur-catering/assortiment.php");
	menu.addSubMenu("Bezorging", "../traiteur-catering/bezorging.php");

/* HOOFD ITEM 5 */
menu.addMenu("Wijn", "../wijn/twentsch-wijnhuis.php");
	/* SUBITEMS */
	menu.addSubMenu("Twents Wijnhuis", "../wijn/twentsch-wijnhuis.php");
	menu.addSubMenu("Enomatic", "../wijn/enomatic.php");
	menu.addSubMenu("Assortiment", "../wijn/assortiment.php");
	menu.addSubMenu("Advies", "../wijn/advies.php");
	menu.addSubMenu("Bezorging", "../wijn/bezorging.php");

/* HOOFD ITEM 6 */
menu.addMenu("Nieuws", "../nieuws/actueel.php");
	/* SUBITEMS */
	menu.addSubMenu("Actueel", "../nieuws/actueel.php");
	menu.addSubMenu("Nieuwsbrief", "../nieuws/nieuwsbrief.php");


/* VARIABELEN HIERONDER NIET WIJZIGEN */
menu.generate();
/* ---------------------------------- */
