function startup(nr) {
	la = Link[0].split("|");
	topsplit = la[0].split(".");
	topdepth = topsplit.length;
	if (nr != 0) {
		nrsplit = nr.split(".");
		openlevel = nrsplit[topdepth - 1];
	}
	toplevelnumber = 0;
	document.write("<table class='menu' cellpadding=2 cellspacing=0>");
	for(i=0;i<Link.length;i++) {
		la = Link[i].split("|");
		thissplit = la[0].split(".");
		if (thissplit.length == topdepth) {
			if (toplevelnumber != 0) {
				document.write("<tr height=2><TD colspan=2 class='navline'>&nbsp;</td></tr>");
			} 
			else {
				document.write("<tr height=5><TD colspan=2></td></tr>");
			}
			toplevelnumber++;
			document.write("<tr height=20><td class='topmenuside3' width=3></td><a href='" + la[2] + "'><td class='topmenu3' onmouseover='navrollover(this)' onmouseout='navrollout(this)' id='navitem"+toplevelnumber+"'><b>"+ la[1] + "</b></td></a></tr>");
		} else {
			if(toplevelnumber == openlevel || nr == 0) {
				document.write("<tr height=20><TD class='itemside' width=3></TD><TD class='item' id='navsubitem"+i+"'><a class='item' href='" + la[2] + "'>"+ la[1] + "</a></TD></TR>");
			}
		}
	}
	document.write("</table>");
}

function navrollover (obj) {
	obj.style.backgroundColor='#103184';
	obj.style.color='#FFFFFF';
	obj.style.cursor='hand';
}

function navrollout (obj) {
	obj.style.backgroundColor='#FFFFFF';
	obj.style.color='#103184';
}