function setNavi(){
	
	var el = document.getElementById("subnav");	
	var unterpunkte = el.childNodes.length;
	var menuwidth = document.getElementById("subnav").offsetWidth;
	var liwidth = Math.round(menuwidth / unterpunkte);
	
	for(var i=0; i<unterpunkte; i++){
		el.childNodes[i].style.width = liwidth+"px";
	}		
	
	//console.log(liwidth);				
}
