// 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 = [
	['Die Firma','die_firma.html' , {'tt':'Über Uns'}],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 
	['Produkte', 'produkte.html', {'tt':'Die Produkteübersicht'}],
	['Service > > > ','service.html',{'tt':'Die Serviceabteilung, Das Team, ServiceVertrag'},
		['Abteilung','service-abteilung.html'],
		['Das Team','service-team.html'],
		['Servicevertrag','servicev.html']
		],
	['Ersatzteile','ersatzteile.html'],
	['Referenzen', 'referenzen.html'],
	['Kontakt  > > > ', 'contact.html',{'tt':'Kontak, Kontaktformular, Anfahrt, Details'},
		['Kontaktformular','contactint.html'],
		['Anfahrt > >','skizze.html',{'tt':'Anfahrskizze, Detailskizze'},
			['Anfahrt','skizze.html'],
			['Details','skizze-d.html']
		],
		['Impressum','impressum.html']
	],
	['HOME', 'index.html']
];


