// 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 = [	
['Start', null, null,
		// this is how item scope settings are defined
		['Startseite', 'http://www.taxi-windeck.de/index.html', {'tw':'_top'}],
  		// this is how multiple item scope settings are defined
	],
	
['Über uns', null, null,
		// this is how item scope settings are defined
		['Wir über uns', 'http://www.taxi-windeck.de/_builder/wir.htm', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
	],

['Fahrzeuge', null, null,
		// this is how item scope settings are defined
		['Taxi', 'http://www.taxi-windeck.de/_builder/taxen.htm', {'tw':'_top'}],
		['Mietwagen', 'http://www.taxi-windeck.de/_builder/mietwagen.htm', {'tw':'_top'}],
		['Fuhrpark', 'http://www.taxi-windeck.de/_builder/fuhrpark.htm', {'tw':'_top'}],
		// this is how multiple item scope settings are defined
	],
['Kontakt', null, null,
		// this is how item scope settings are defined
		['Telefonisch', 'http://www.taxi-windeck.de/_builder/telefonisch.htm', {'tw':'_top'}],
		['Krankenfahrten', 'http://www.taxi-windeck.de/_builder/krankenfahrt.htm'],
		['Online-Bestellung', 'http://www.taxi-windeck.de/_builder/bestellung.htm'],
		// this is how multiple item scope settings are defined
	],
['Beförderungspreise', null, null,
		// this is how item scope settings are defined
		['Taxi', 'http://www.taxi-windeck.de/_builder/taxi.htm', {'tw':'_top'}],
		['Mietwagen', 'http://www.taxi-windeck.de/_builder/mietwagen2.htm'],
		// this is how multiple item scope settings are defined
		['Krankenfahrten', 'http://www.taxi-windeck.de/_builder/krankenfahrt2.htm'],
		
	],

['Impressum', null, null,
		['Impressum', 'http://www.taxi-windeck.de/_builder/impressum.htm', {'tw':'_top'}],
		['Gästebuch', 'http://www.taxi-windeck.de/_builder/gastbuch.htm'],
		],

];



