function getTopID_FromID(vID){
	if(vID==-1)return -1;
	var iIndex=getIndexFromID(vID);
	if(aIDParent[iIndex]<1){
		return vID;
	}
	else{
		return getTopID_FromID(aIDParent[iIndex]);
	}
}

function getIndexFromID(vID){
	for(i=0;i<aIDMenuePunkt.length;i++){
		if(aIDMenuePunkt[i]==vID)return i;
	}
	return -1;
}

function writeTopMenue(vIDTop,iTableWidth,iTableHeight,iOffsetLeft,iOffsetRight){
	
	var strBgColorActive="#ffffff";
	var strBgColorInactiveOff="#f00632";//DED9B3
	var strBgColorInactiveOn="#ff2a52";//ebe4e2
	
	var strTextColorActive="#000000";
	var strTextColorInactiveOff="#f0e7e7";//"#991426";
	var strTextColorInactiveOn="#dcd4d4";//"#DED9B3";
	
	var strGridStyle="1px solid #02529c"; //991426
	
	var strGridStyleActive="border-top:"+strGridStyle+";border-left:"+strGridStyle+";border-right:"+strGridStyle;
	var strGridStyleInctive="border-bottom:"+strGridStyle;
	
	var strStyleActive=" align=center class='navTop' bgcolor="+strBgColorActive+" style='cursor:hand;color:"+strTextColorActive+";"+strGridStyleActive+"' ";
	var strStyleInactive=" align=center class='navTop' bgcolor="+strBgColorInactiveOff+" style='cursor:hand;color:"+strTextColorInactiveOff+";"+strGridStyleInctive+"' ";
	var strStyleInactiveOut= " onmouseout='this.style.backgroundColor=\""+strBgColorInactiveOff+"\";this.style.color=\""+strTextColorInactiveOff+"\"'";
	var strStyleInactiveOver=" onmouseover='this.style.backgroundColor=\""+strBgColorInactiveOn+"\";this.style.color=\""+strTextColorInactiveOn+"\"'";
	

	//Spalten zählen
	var iCellCounter=0;
	for(i=0;i<aIDMenuePunkt.length;i++){
		if(aIDParent[i]==0){
			iCellCounter++
		}
	}
	var iSpaltenbreite=Math.floor((iTableWidth-iOffsetLeft-iOffsetRight)/iCellCounter);
	
	strMenue=new String("<table width="+iTableWidth+" height="+iTableHeight+" border=0 cellspacing=0 cellpadding=1><tr>");

	if(iOffsetLeft>0){//Linker Offset
		strMenue+= "<td width='"+iOffsetLeft+"' bgcolor="+strBgColorInactiveOff+" style='"+strGridStyleInctive+"'>&nbsp;</td>";
	}
	for(i=0;i<aIDMenuePunkt.length;i++){//Navigationsspalten
		if(aIDParent[i]==0){
			var strLink=" onclick='document.location=\"pages.asp?Page="+aIDMenuePunkt[i]+"\";'";
			if(vIDTop==aIDMenuePunkt[i]){//Menuepunkt oder untermenüpunkt von diesem TopMenuepunkt ist ausgewählt
				strMenue+= "<td width='"+iSpaltenbreite+"' "+strStyleActive+strLink+"><b>"+aMenuePunkt[i]+"</b></td>";
			}else{
				strMenue+= "<td width='"+iSpaltenbreite+"' "+strStyleInactive+strStyleInactiveOver+strStyleInactiveOut+strLink+"><b>"+aMenuePunkt[i]+"</b></td>";
			}
		}
	}
	if(iOffsetRight>0){//rechter Offset
		strMenue+= "<td width='"+iOffsetRight+"' bgcolor="+strBgColorInactiveOff+" style='"+strGridStyleInctive+"'>&nbsp;</td>";
	}
	return strMenue+"</tr></table>";
}//function

