var activeMenu=1;
if ((topParent==22) || (topParent==23) || (topParent==26) || (topParent==93 )){
	activeMenu=2;
}
if (topParent==90){
	activeMenu=3;
}
if (topParent==28){
	activeMenu=4;
}
if (topParent==88){
	activeMenu=5;
}
if (topParent==27){
	activeMenu=6;
}
if (topParent==91){
	activeMenu=7;
}
function menuClick(str){
	if (str=="university"){
    	toggleUniMenu();
    }
    if (str=="abiturients"){
    	window.location="builder.php?go=abiturient";
    }
    if (str=="contacts"){
    	window.location="builder.php?go=kontakts";
    }
    if (str=="news"){
    	window.location="builder.php?go=news";
    }
    if (str=="vacancies"){
    	window.location="builder.php?go=vacancy";
    }
    if (str=="partners"){
    	window.location="builder.php?go=partners";
    }
}
function menuTop(){
	menuNewFlag=true;
	return "<TABLE WIDTH=196 BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD><IMG HEIGHT=5 WIDTH=192 SRC=img/lmenu_top.gif></TD></TR>";
}
function menuHeader(title){
	var result="";
	if (title && title.length){
		if (!menuNewFlag){
			result+="<TR><TD><IMG WIDTH=196 HEIGHT=6 SRC=img/lmenu_line.gif></TD></TR>";
		}
		result+="<TR><TD BACKGROUND=img/lmenu_bg.gif ALIGN=CENTER><SPAN CLASS=menusubheader>"+title+"</SPAN></TD></TR>";
		result+="<TR><TD><IMG WIDTH=196 HEIGHT=6 SRC=img/lmenu_line.gif></TD></TR>";
	}
	menuNewFlag=false;
	return result;
}
function menuFootter(){
	return "<TR><TD><IMG SRC=img/lmenu_bot.gif></TD></TR></TABLE>";
}
function menuItems(id){
	menuNewFlag=false;
	var result="";
	var buildmode=0;
	var level=0;
	for (var i=0;i<menu.length;i++){
		if (buildmode && (level>menu[i][1])){
			break;
		}
		if (buildmode && level==menu[i][1]){
			result+="<TR><TD BACKGROUND=img/lmenu_bg.gif>";
			result+="<TABLE WIDTH=196 CELLSPACING=0 CELLPADDING=0 BORDER=0><TR><TD WIDTH=17><IMG SRC=img/tr.gif WIDTH=17 HEIGHT=1></TD>";
			if (menu[i][2]==nodeId){
				result+="<TD CLASS=amenutext><A CLASS=amenu HREF=builder.php?id="+menu[i][2]+"><IMG HSPACE=3 BORDER=0 SRC=img/menu_arrow.gif WIDTH=9 HEIGHT=7>"+menu[i][0]+"</a></TD>";
			} else {
				result+="<TD CLASS=menutext><A CLASS=menu HREF=builder.php?id="+menu[i][2]+"><IMG HSPACE=3 BORDER=0 SRC=img/menu_arrow.gif WIDTH=9 HEIGHT=7>"+menu[i][0]+"</a></TD>";
			}
			result+="<TD WIDTH=17><IMG SRC=img/tr.gif WIDTH=17 HEIGHT=1></TD>";
			result+="</TR></TABLE>";
			result+="</TD></TR>";
		}
		if (menu[i][2]==id){
			buildmode=1;
			level=menu[i][1]+1;
		}
	}
	return result;
}
function menuGenLink(href,title,id){
	menuNewFlag=false;
	result="";
	result+="<TR><TD BACKGROUND=img/lmenu_bg.gif>";
	result+="<TABLE WIDTH=196 CELLSPACING=0 CELLPADDING=0 BORDER=0><TR><TD WIDTH=17><IMG SRC=img/tr.gif WIDTH=17 HEIGHT=1></TD>";
	if (id==nodeId){
		result+="<TD CLASS=amenutext><A CLASS=amenu HREF=\""+href+"\"><IMG HSPACE=3 BORDER=0 SRC=img/menu_arrow.gif WIDTH=9 HEIGHT=7>"+title+"</a></TD>";
	} else {
		result+="<TD CLASS=menutext><A CLASS=menu HREF=\""+href+"\"><IMG HSPACE=3 BORDER=0 SRC=img/menu_arrow.gif WIDTH=9 HEIGHT=7>"+title+"</a></TD>";
	}
	result+="<TD WIDTH=17><IMG SRC=img/tr.gif WIDTH=17 HEIGHT=1></TD>";
	result+="</TR></TABLE>";
	result+="</TD></TR>";
	return result;
}
function toggleUniMenu(){
	obj=document.getElementById('uniMenu');
    if (obj.style.display=="none"){
		obj.style.display="inline";
    } else {
		obj.style.display="none";
    }
}
