//Menuepunkt-Highlight bei Seitenstart: Nummer Menuepunkt im SeitenHTML (beginnend mit 0) mitgeben (z.B. document.write(getKonzeption(2)); fuer Highlighting 3. Menuepunkt = gestaltung)

//Eintraege Service-Unternavigation "Konzeption" (Text, Verlinkung,
var konzeption = new Array();

konzeption[0] = new Object();
konzeption[0].titel = ("analyse");
konzeption[0].url = ("analyse.htm");

konzeption[1] = new Object();
konzeption[1].titel = ("idee");
konzeption[1].url = ("idee.htm");

konzeption[2] = new Object();
konzeption[2].titel = ("gestaltung");
konzeption[2].url = ("gestaltung.htm");

konzeption[3] = new Object();
konzeption[3].titel = ("plan");
konzeption[3].url = ("plan.htm");


function getFooter()
{
	var i = 0;
	var footer = new Array();
	
	footer[i] = new Foo ("Ist-Aufnahme und Analyse", "analyse.htm",1); i++;
	footer[i] = new Foo ("Pflichtenheft", "analyse.htm",1); i++;
	footer[i] = new Foo ("Arbeitsplatzbewertungsanalyse", "analyse.htm",1); i++;
	footer[i] = new Foo ("Ideenberatung", "idee.htm",2); i++;
	footer[i] = new Foo ("Visionsbildung", "idee.htm",2); i++;
	footer[i] = new Foo ("Produktfindung", "idee.htm",2); i++;
	footer[i] = new Foo ("Typenkatalog", "idee.htm",2); i++;
	footer[i] = new Foo ("Machbarkeitsstudien", "idee.htm",2); i++;
	footer[i] = new Foo ("Standortberatung", "idee.htm",2); i++;
	footer[i] = new Foo ("Struktur-, B&uuml;roberatung", "idee.htm",2); i++;
	footer[i] = new Foo ("Organisationsberatung", "idee.htm",2); i++;
	footer[i] = new Foo ("Feng Shui", "gestaltung.htm",3); i++;
	footer[i] = new Foo ("Innenarchitektur", "gestaltung.htm",3); i++;
	footer[i] = new Foo ("Kunstberatung", "gestaltung.htm",3); i++;
	footer[i] = new Foo ("Licht- und Akustikplanung", "gestaltung.htm",3); i++;
	footer[i] = new Foo ("Boden-Wand-Decke", "gestaltung.htm",3); i++;
	footer[i] = new Foo ("Fl&auml;chenbedarfs- und Strukturermittlung", "plan.htm",4); i++;
	footer[i] = new Foo ("Grob-/Feinkonzept", "plan.htm",4); i++;
	footer[i] = new Foo ("Detailplanung", "plan.htm",4); i++;
	footer[i] = new Foo ("Ausf&uuml;hrungsplanung f&uuml;r Innenbau und M&ouml;blierung", "plan.htm",4); i++;

	return (footer);
}


