<!-- Code verstecken
var browser_name	= navigator.appName;
var browser_version	= parseFloat(navigator.appVersion);
var animationEnabled 	= false;

var anzahl = 26;
var Aktivbild = -1;
var i, indexMain, indexSub;

var NS4 = (document.layers) ? 1 : 0;
var NS5 = (document.getElementById) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;
var ver4 = (NS4 || IE4) ? 1 : 0;


function initNavigation(strLanguage) {

// First check for browser
if((browser_name == 'Netscape' && browser_version >= 4) ||
   (browser_name == 'Microsoft Internet Explorer' && browser_version >= 4)) {
	// Animation enabled if Netscape 4.0 or higher or
	//                      Microsoft IE 4.0 or higher
	animationEnabled = true;
} // endif


if (animationEnabled) {


	grafik = new Array(anzahl);
	grafikb = new Array(anzahl);
	
	indexMain = 1;

	for (i = 0; i <= anzahl - 1; i++) {


		grafik[i] = new Image();
		grafikb[i] = new Image();
		grafik[i].src  = "/web/" + strLanguage + "/images/button_0" + indexMain + ".gif";
		grafikb[i].src = "/web/" + strLanguage + "/images/button_0" + indexMain + "x.gif";
		
		switch(i) {
			case 0:
			
				indexSub = 1;
				
				for(j = i; j < i + 4; j++) {
				
					grafik[j+1] = new Image();
					grafikb[j+1] = new Image();
					grafik[j+1].src  = "/web/" + strLanguage + "/images/button_01_" + indexSub + ".gif";
					grafikb[j+1].src = "/web/" + strLanguage + "/images/button_01_" + indexSub + "x.gif";
					
					indexSub++;
				}
				
				i+=4;
				break;

			case 5:
			
				indexSub = 1;
				
				for(j = i; j < i + 3; j++) {
				
					grafik[j+1] = new Image();
					grafikb[j+1] = new Image();
					grafik[j+1].src  = "/web/" + strLanguage + "/images/button_02_" + indexSub + ".gif";
					grafikb[j+1].src = "/web/" + strLanguage + "/images/button_02_" + indexSub + "x.gif";
					
					indexSub++;
				}
				
				i+=3;
				break;
				
			case 9:
			
				indexSub = 1;
				
				for(j = i; j < i + 3; j++) {
				
					grafik[j+1] = new Image();
					grafikb[j+1] = new Image();
					grafik[j+1].src  = "/web/" + strLanguage + "/images/button_03_" + indexSub + ".gif";
					grafikb[j+1].src = "/web/" + strLanguage + "/images/button_03_" + indexSub + "x.gif";
					
					indexSub++;
				}
				
				i+=2;
				break;	
				
			case 12:
			
				indexSub = 1;
				
				for(j = i; j < i + 3; j++) {
				
					grafik[j+1] = new Image();
					grafikb[j+1] = new Image();
					grafik[j+1].src  = "/web/" + strLanguage + "/images/button_04_" + indexSub + ".gif";
					grafikb[j+1].src = "/web/" + strLanguage + "/images/button_04_" + indexSub + "x.gif";
					
					indexSub++;
				}
				
				i+=3;
				break;
				
			case 18:
			
				indexSub = 1;
				
				for(j = i; j < i + 3; j++) {
				
					grafik[j+1] = new Image();
					grafikb[j+1] = new Image();
					grafik[j+1].src  = "/web/" + strLanguage + "/images/button_07_" + indexSub + ".gif";
					grafikb[j+1].src = "/web/" + strLanguage + "/images/button_07_" + indexSub + "x.gif";
					
					indexSub++;
				}
				
				i+=2;
				break;
				
			case 21:
			
				indexSub = 1;
				
				for(j = i; j < i + 3; j++) {
				
					grafik[j+1] = new Image();
					grafikb[j+1] = new Image();
					grafik[j+1].src  = "/web/" + strLanguage + "/images/button_08_" + indexSub + ".gif";
					grafikb[j+1].src = "/web/" + strLanguage + "/images/button_08_" + indexSub + "x.gif";
					
					indexSub++;
				}
				
				i+=2;
				break;
		}
		
		indexMain++;
		
	} // endfor

	grafik[i] = new Image();
	grafikb[i] = new Image();
	grafik[i].src  = "/web/images/deutsch.gif";
	grafikb[i].src = "/web/images/deutsch_x.gif";
	i++;

	grafik[i] = new Image();
	grafikb[i] = new Image();
	grafik[i].src  = "/web/images/francais.gif";
	grafikb[i].src = "/web/images/francais_x.gif";
	i++;
	
	grafik[i] = new Image();
	grafikb[i] = new Image();
	grafik[i].src  = "/web/images/english.gif";
	grafikb[i].src = "/web/images/english_x.gif";
	i++;
	
	grafik[i] = new Image();
	grafikb[i] = new Image();
	grafik[i].src  = "/web/images/home.gif";
	grafikb[i].src = "/web/images/home_x.gif";

} // endif
}

function AnimOff(Bild, Nummer) {
	if (animationEnabled) {
		if(Nummer != Aktivbild) {
			document.images[Bild].src = grafik[Nummer].src;
		}
		else {
		        document.images[Bild].src = grafikb[Nummer].src;
		} // endif
	} // endif
} // end of AnimOff()

function AnimOn(Bild,Nummer) {
	if (animationEnabled) {
		if (Nummer!=Aktivbild) {
			document.images[Bild].src = grafikb[Nummer].src;
		} // endif
	} // endif
} // end of AnimOn()

// -->