//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 = ("steuerung");
konzeption[0].url = ("steuerung.htm");

konzeption[1] = new Object();
konzeption[1].titel = ("ausf&uuml;hrung");
konzeption[1].url = ("ausfuehrung.htm");

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


function getFooter()
{
	var i = 0;
	var footer = new Array();
	
	footer[i] = new Foo ("Behördliche Anträge und Genehmigungen", "steuerung.htm",1); i++;
	footer[i] = new Foo ("Ausschreibungserstellung und Bewertung", "steuerung.htm",1); i++;
	footer[i] = new Foo ("Koordination angrenzender Gewerke", "steuerung.htm",1); i++;
	footer[i] = new Foo ("Ablauforganisation", "steuerung.htm",1); i++;
	footer[i] = new Foo ("Zwischenlagerung, Anlieferung, Montage und Verpackungsentsorgung", "ausfuehrung.htm",2); i++;
	footer[i] = new Foo ("Umzugsmanagement", "ausfuehrung.htm",2); i++;
	footer[i] = new Foo ("Schlüsselfertige Übergabe", "ausfuehrung.htm",2); i++;
	footer[i] = new Foo ("Budgetierung", "finanz.htm",3); i++;
	footer[i] = new Foo ("Finanzierungskonzept", "finanz.htm",3); i++;
	footer[i] = new Foo ("Finanzleasing", "finanz.htm",3); i++;
	footer[i] = new Foo ("Modernisierungsleasing", "finanz.htm",3); i++;

	return (footer);
}


