
		function werbinich()
		{
			//alert(location.href);
			var aktuell = location.href;
			var datei = aktuell.split("/");
			var anzahl = datei.length;
			var dateiname = datei[anzahl-1];
			//alert(""+dateiname);
			if (dateiname == 'index.html')
				{
					// TEST netscape 4 document.hom_active.style.visbility="show";
					document.all.home_active.style.visibility = "visible";
				}
			if (dateiname == 'produkte.html')
				{
					// TEST netscape 4 document.hom_active.style.visbility="show";
					document.all.produkte_active.style.visibility = "visible";
				}
				
			if (dateiname == 'wir.html')
				{
					// TEST netscape 4 document.hom_active.style.visbility="show";
					document.all.wir_active.style.visibility = "visible";
				}								
				
			if (dateiname == 'kontakt.html')
				{
					// TEST netscape 4 document.hom_active.style.visbility="show";
					document.all.kontakt_active.style.visibility = "visible";
				}								
				
			if (dateiname == 'so.html')
				{
					// TEST netscape 4 document.hom_active.style.visbility="show";
					document.all.so_active.style.visibility = "visible";
				}								
								
			if (dateiname == 'impressum.html')
				{
					// TEST netscape 4 document.hom_active.style.visbility="show";
					document.all.impressum_active.style.visibility = "visible";
				}				
			}
			

