function hover(id){
	if (id=='n1'){
		hoverIn(id);
		hoverOut('n2');
		hoverOut('n3');
		hoverOut('n4');
	}
	if (id=='n2'){
		hoverIn(id);
		hoverOut('n1');
		hoverOut('n3');
		hoverOut('n4');
	}
	if (id=='n3'){
		hoverIn(id);
		hoverOut('n1');
		hoverOut('n2');
		hoverOut('n4');
	}
	if (id=='n4'){
		hoverIn(id);
		hoverOut('n1');
		hoverOut('n2');
		hoverOut('n3');
	}
}
function hoverIn(id){
	lis=document.getElementById(id).getElementsByTagName('li');
	if (id=='n1'){
		t='ueberuns';
	}
	if (id=='n2'){
		t='diepraxis';
	}
	if (id=='n3'){
		t='kontakt';
	}
	if (id=='n4'){
		t='admin';
	}
	lis[0].getElementsByTagName('a')[0].style.backgroundImage="url('images/layout.navi."+t+".on.gif')";
	for(i=0;i<lis.length;i++){
		lis[i].style.display="block";
		lis[i].style.backgroundColor="#f0e5d4";
	}
}

function hoverOut(id){
	lis=document.getElementById(id).getElementsByTagName('li');
	if (id=='n1'){
		t='ueberuns';
	}
	if (id=='n2'){
		t='diepraxis';
	}
	if (id=='n3'){
		t='kontakt';
	}
	if (id=='n4'){
		t='admin';
	}
	for(i=0;i<lis.length;i++){
		if (i==0){
			lis[i].style.display="block";
			lis[0].getElementsByTagName('a')[0].style.backgroundImage="url('images/layout.navi."+t+".gif')";
		} else {
			lis[i].style.display="none";
			lis[i].style.backgroundColor="";
		}
	}
}

