﻿/** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ************************************************************************************************
 *
 *	Copyright (c) 2009, Arno Dudek (http://www.adgrafik.at, office@adgrafik.at)
 *
 *	@copyright	Copyright (c) 2009, Arno Dudek
 *

 ************************************************************************************************
 ** * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


MenuCreator = {
	navigation: [
		{
			title: 'Home',
			url: 'index.html'
		},
		{
			title: 'Leistungen',
			url: 'leistungen.html',
			items: [
				{
					title: 'Leistungen',
					url: 'leistungen.html'
				},
				{
					title: 'GDX-Untersuchung',
					url: 'leistung_gdx.html'
				},
				{
					title: 'Kinder und Prävention',
					url: 'leistung_kinder.html'
				},
				{
					title: 'Diabetes',
					url: 'leistung_diabetes.html'	//	Hier ...
				}											//	... oder hier ...
			]												//	... oder hier, jeweils am Ende einer Aufzählung, darf kein Komma stehen !
		},
		{
			title: 'Ordination',
			url: 'ordination.html',
			items: [
				{
					title: 'Die Ordination',
					url: 'ordination.html'
				},
				{
					title: 'Ordinationszeiten',
					url: 'ordination_zeiten.html'
				},
				{
					title: 'Wahlarzt & Honorar',
					url: 'ordination_honorar.html'	//	Hier ...
				}											//	... oder hier ...
			]												//	... oder hier, jeweils am Ende einer Aufzählung, darf kein Komma stehen !
		},
		{
			title: 'Kontaktlinsen',
			url: 'kontaktlinsen.html'
		},
		{
			title: 'Sehschule',
			url: 'sehschule.html'
		},
		{
			title: 'Team',
			url: 'team.html'
		},
		{
			title: 'Kontakt',
			url: 'kontakt.html',
			items: [
				{
					title: 'Kontakt',
					url: 'kontakt.html'
				},
				{
					title: 'Anfahrtsplan',
					url: 'kontakt_anfahrtsplan.html'
				},
				{
					title: 'Anfahrtsplan detail',
					url: 'kontakt_anfahrtsplan_01.html'
				},
				{
					title: 'Impressum',
					url: 'kontakt_impressum.html'
				}				
			]
		},
			{
			title: 'Links',
			url: 'links.html'
		}
	],

	//	Ab hier nicht ändern !!!
	expand:			'current',
	classMenu:		'menu',
	classCurrent:	'current',
	classEven:		'',
	classFirst:		'',
	classLast:		'',
	currentPrefix:	{
		1: '<span class="prefix">&raquo;&nbsp;</span>'
	}
};


