// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['&gt;Produktion', 'produktion.php', {'tw':'_self', 'tt':'Produktion'},
		['&nbsp;&gt;Fr&auml;sen', 'fraesen.php', {'tw':'_self', 'tt':'Fr&auml;sen'}],
		['&nbsp;&gt;Drehen', 'drehen.php', {'tw':'_self', 'tt':'Drehen'}],
		['&nbsp;&gt;Schleifen', 'schleifen.php', {'tw':'_self', 'tt':'Schleifen'}],
		['&nbsp;&gt;Drahtschneiden', 'drahtschneiden.php', {'tw':'_self', 'tt':'Drahtschneiden'}],
		['&nbsp;&gt;Baugruppe', 'baugruppe.php', {'tw':'_self', 'tt':'Baugruppe'}],
		['&nbsp;&gt;Oberfl&auml;che', 'oberflaeche.php', {'tw':'_self', 'tt':'Oberfl&auml;che'}],
		['&nbsp;&gt;Schwei&szlig;en', 'schweissen.php', {'tw':'_self', 'tt':'Schwei&szlig;en'}]
	],
];

