 

function Init_Navi(j,k) {


	linkopen	="<tr><td class='HB'> <a class='T' href=";
	nolink		="<tr><td class='HBL'> <a class='act' href=";

	NaviLinks 	= new Array();
	NaviLinks[0] 	= new Array("'/Harley/2010/Bike.php' title='Alle Harleys Modelljahr 2010'>Harley '10</a>", 
				"'/Harley/2009/Features.php' title='Alle Harleys Modelljahr 2009'>Harley '09</a>",  
				"'/Buell/2010/Bike.php' title='Alle Buell Modelljahr 2010'>Buell '10</a>", 
				"'/Buell/2009/Buell.php' title='Alle Buell Modelljahr 2009'>Buell '09</a>",
				"'/Gebrauchte/Harley-Buell.php' GebraUcht-Bikes von Harley & Buell'>Used Bikes</a>",
				"'/Vermietung.php' title='Unsere Mietmaschinen'>Bikes to rent</a>"); 
	NaviLinks[1] 	= new Array("'/Probefahrten.php' title='Unsere aktuellen Vorführmaschinen'>Probefahrten</a>",
				"'/Service.php' title='Unsere Service-Leistungen'>Service</a>",
				"'/Preisliste.php' title='Preisliste aller Parts u. Accessoires'>Parts-Preisliste</a>",
				"'/Modenschau.php' title='Wir bieten aktuelle Harley- & Buell-Mode'>Fashion & Clothes</a>",
				"'/FAQ.php' title='Antworten auf oft gestellte Fragen'>FAQ</a>",
				"'/Sonderaktion/Special.php' title='Winter-Werkstatt-Angebote 2009/2010'>W-W-As</a>");
	NaviLinks[2] 	= new Array("'/ForBikers.php' title='Biker-Termine im Süden und überall'> Biker-Termine</a>", 
				"'/Events/Events.php' title='kurze Bild-Berichte über Events bei und um uns herum'>Event-R&uuml;ckschau</a>",
				"'/RundUmHarley/Rund-um-Harley.php' title='Interessantes, Lesens- Sehens- und Bemerkenswertes rund um Harley'>Rund um Harley</a>",
				"'/Rund-um-Buell.php' title='Interessantes, Lesens- Sehens- und Bemerkenswertes rund um Buell'>Rund um Buell</a>",
				"'/Kalender.php' title='Versuch einer Wettervorhersage füs nächste Jahr'>Wetter</a>",
				"'/HOG/HOG.php' title='Platz für Links'>Clubs & Links</a>");
	NaviLinks[3] 	= new Array("'/ShowRoom.php' title='So sieht es bei uns aus'>Unser Showroom</a>",
				"'/UnsereFirma.php' title='Wer wir sind und was wir tun'>Infos zur Firma</a>",
				"'/Team.php' title='Dürfen wir uns Ihnen vorstellen?'>Unser Team</a>",
				"'/Video.php' title='Wir zeigen uns 5 1/2 Minuten lang per Video'>Video</a>");
	NaviLinks[4] 	= new Array("'/Kontakt.php' title='Öffnungszeiten & Kontakt-Infos'>Kontakt</a>",
				"'/Anfahrt.php' title='Karten, Routen-Beschreibung & GPS-Daten'>Anfahrt</a>");
	NaviLinks[5] 	= new Array("'/Harley/2008/Harley.php' title='Archiv: Die Harleys Modelljahr 2008'>Harley '08</a>",
				"'/Harley/2007/Harley.php' title='Archiv: Die Harleys Modelljahr 2007'>Harley '07</a>", 
				"'/Harley/2006/Harley.php' title='Archiv: Die Harleys Modelljahr 2006'>Harley '06</a>", 
				"'/Harley/2005/Harley-2005.php' title='Archiv: Die Harleys Modelljahr 2005'>Harley '05</a>", 
				"'/Archiv/Sportster2004.php' title='Archiv: Die Harleys Modelljahr 2004'>Harley '04</a>", 
				"'/Archiv/Harley2003.php' title='Archiv: Die Harleys Modelljahr 2003'>Harley '03</a>", 
				"'/Archiv/Harley2002.php' title='Archiv: Die Harleys Modelljahr 2002'>Harley '02</a>", 
				"'/Buell/2008/Buell.php' title='Archiv: Buell-Bikes Modelljahr 2008'>Buell '08</a>", 
				"'/Buell/2007/Buell.php' title='Archiv: Buell-Bikes Modelljahr 2007'>Buell '07</a>", 
				"'/Buell/2006/Buell.php' title='Archiv: Buell-Bikes Modelljahr 2006'>Buell '06</a>", 
				"'/Buell/2004/Firebolt.php' title='Archiv: Buell-Bikes Modelljahr 2004'>Buell '04</a>");


	for (var index=0; index < NaviLinks.length; ++index) {
		if 	(index == 0) document.write("<div class='navibox' id='Info1' style='top:27%';>");
		else if (index == 1) document.write("<div class='navibox' id='Info2' style='top:33%';>");
		else if (index == 2) document.write("<div class='navibox' id='Info3' style='top:40%';>");
		else if (index == 3) document.write("<div class='navibox' id='Info4' style='top:46%';>");
		else if (index == 4) document.write("<div class='navibox' id='Info5' style='top:53%';>");
		else if (index == 5) document.write("<div class='navibox' id='Info6' style='top:30%';>");
		document.write("<table cellspacing='8' bgcolor='#000000'>");
		for (var i=0; i < NaviLinks[index].length; ++i) {
			/* so geht's leider nedde: alert(NaviLinks[index][i].indexOf(window.location.pathname)); */
			if 	(j == index && k == i) 	document.write(nolink);
			else				document.write(linkopen);	
			document.write( NaviLinks[index][i] + "<\/td><\/tr>");
		}
		document.write("<\/table><\/div>");
	}
}
