// JavaScript Document

<!--

	function init(){
		if (window.location.search != ""){
			var pid = window.location.search.substr(5, 40);
			var spid = pid.indexOf('&');
			if(pid=="contact" || pid=="impressum"){
				document.getElementById(pid).style.color = "#FFF";
			} else {
				if(spid=='-1'){
					document.getElementById(pid).style.color = "#C00";
					document.getElementById(pid).style.marginBottom = "0";
					document.getElementById(pid).style.borderBottom = "1px solid #FFF";
					if(pid=='hoesel'){
						document.getElementById('hoeselsub').style.display = "block";
					}
					if(spid == '6'){
						var sp = pid.substr(12, 40);
						document.getElementById(sp).style.color = "#C00";	
						document.getElementById('hoeselsub').style.display = "block";					
					}
				} else {
					var sp = pid.substr(12, 40);
					var vorne = window.location.search.indexOf('=');
					var hinten = window.location.search.indexOf('&');
					var pid = window.location.search.substr(vorne+1, hinten-vorne-1);
					document.getElementById(sp).style.color = "#C00";	
					document.getElementById('hoeselsub').style.display = "block";
					document.getElementById(pid).style.color = "#C00";
					document.getElementById(pid).style.marginBottom = "0";
					document.getElementById(pid).style.borderBottom = "1px solid #FFF";
				}				
			}
		} else {
			document.getElementById("home").style.color = "#C00";
			document.getElementById("home").style.marginBottom = "0";
			document.getElementById("home").style.borderBottom = "1px solid #FFF";
		}
	}
	
	function language(coun){			
			if(coun=='DE'){
				ensee = document.URL.indexOf('EN');
				aesee = document.URL.indexOf('AE');
				if(ensee=='-1' && aesee=='-1'){
					yet = window.location.search;
					window.location.href = "index.php"+yet;
				} else {
					yet = window.location.search;
					window.location.href = "../index.php"+yet;	
				}
			} else {
				ensee = document.URL.indexOf('EN');
				aesee = document.URL.indexOf('AE');
				if(ensee=='-1' && aesee=='-1'){
					yet = window.location.search;
					window.location.href = coun+"/index.php"+yet;
				} else {
					if(coun=='AE' || coun=='EN'){
						yet = window.location.search;
						window.location.href = '../'+coun+"/index.php"+yet;
					} else {
						yet = window.location.search;
						window.location.href = coun+"/index.php"+yet;
					}
				}
			}
	}
	
-->