// JavaScript Document

// die Höhe des grauen Bands unterhalb der Navigation
	$(document).ready(function(){
		var navi_height = $(this).find('#navi').height();
		var navi = $(this).find('#navi');		
		var content_height = $(this).find('#content').height();
		if(content_height > navi_height){
			navi.css("height", content_height +30 );
		}
})
	
// countryselect aufruf
		function Go (select) {
		var wert = select;
			if (wert == "leer") {
				select.form.reset();
			return;
			} else {
				extra = window.open(select, '_blank');
			}
		}
		
		function switchURL(lang) {
				montage=window.location.href.split("/");
				simple=montage.length-2;
				folder=montage[simple];
				if(folder == 'haendlersuche' || folder == 'presse'){
					target='../../../'+ lang +'index.htm';
					document.location.replace (target);
				}else if(folder.length == 2){
					target='../../'+ lang +'index.htm';
					document.location.replace (target);
				}else if(lang=="0"){
					return false;					
				}else{
					target='../../../'+ lang + folder +'/index.htm';
					document.location.replace (target);
				}
			}
