

var islocal = (document.referrer.indexOf("localhost")!=-1);

var blokcolor;
function getblokcolor(num,tot)
{
var c = new Array("#F7941E","#F46B22","#EF2D24","#BA374C","#774678","#0B50A2","#0B7482","#009869", "#F7941E","#F7941E","#F7941E","#F7941E","#F7941E");
if (num>=tot) { return c[7]; } else { return c[parseInt(9*(num-1)/(tot))]; }
}

var menuopening = "23456"; //afdelingen met een "algemeen" knoppie

var showmenutimer;
var showmenulasttime=0;

function showmenusub(afd,id,ypos)
{
	var t=0;
	var res="";
	var open=false
	while (JSid[t]!=0)
	{
		if (JSafd[t]==afd)
		{
			if (JSlvl[t]==0)
			{
				open=(JSid[t]==id);
			}
			else if (open==true)
			{
				res+="<TR heigth=13><TD width=13> </td><TD><a href='"+JShref[t]+"' class='navknopsub'";
				if (JSactief[t]==1) res+=" style='color:" + left_holdcolor + ";'";
				res+=">"+JStxt[t].toLowerCase()+"</a><TD width=13> </td></TD></TR>";
			}
		}
		t++;
	}
	if (res=="")
	{
		document.all.menu2.style.visibility="hidden";
	}
	else
	{
		// tabel width 208px
		res="<TABLE cellspacing=0 cellpadding=0 style='background-color:#FFFFFF;border:solid 1px #C0C0C0;'>" +
			"<TR><TD><table style='border:0px;' border=0 cellspacing=0 cellpadding=0>" +
				"<TR HEIGHT=11><TD> </TD></TR>"+res+"<TR HEIGHT=13><TD></TD></TR></table>"+
			"</TD></TR></TABLE>";
		document.all.menu2.style.top=(105-27+(ypos*27));
		document.all.menu2.innerHTML=res;
		document.all.menu2.style.visibility="visible";
	}
	var tt = new Date();
	showmenulasttime = tt.getTime();
}



function showmenu(afd,xpos)
{
	clearTimeout(showmenutimer);

	var menudodelay=true;
	if (afd!=0)
	{
		var tt = new Date();
		var tx = tt.getTime();
		if (showmenulasttime!=0) menudodelay=((tx-showmenulasttime)>1500);
		showmenulasttime=tx;
	}
	

	menu1x=xpos;
	var t=0;
	var res="";
	var bloks=0;
    while (JSid[t]!=0)
    {
	    if ((JSafd[t]==afd) && (JSlvl[t]==0)) bloks++;
	    t++;
    }
	t=0;
	var tel=0;
	var telsm=0;
	var homeid=0;
	var temphref;
	while (JSid[t]!=0)
	{
		if ((JSafd[t]==afd) && (JSlvl[t]==0))
		{
			if ((tel==0)&&(menuopening.indexOf(afd)!=-1)) // OOK IN INC_INBEW.ASP
			{
				if (afd==2) homeid=76715;
				if (afd==3) homeid=76719;
				if (afd==4) homeid=76720;
				if (afd==5) homeid=76721;
				if (afd==6) homeid=76722;
				if (afd==7) homeid=76723;
				temphref="index.asp?id="+homeid+"&afd="+afd+"&runafd="+afd;

                if (!islocal)
                {
                    // if (afd==2) homeid=64182; prod
                    if (afd==2) temphref="/bewegingsonderwijs.html";
                    if (afd==3) temphref="/mrt.html";
                    if (afd==4) temphref="/lvs.html";
                    if (afd==5) temphref="/cursussen.html";
                    if (afd==6) temphref="/advies_&_begeleiding.html";
                    if (afd==7) temphref="/links.html";
                    if (afd==9) temphref="/contact/pagina1.html";
                }

				res+="<TR HEIGHT=13><TD WIDTH=13 VALIGN=TOP><img src='pix/menubalalg.gif' style='width:13;height:13;'/></TD><TD WIDTH=13></TD>"+
				"<TD style='line-height:100%;'><a href='"+temphref+"' class='navknop'";
				if ((location.search==temphref)||(location.pathname==temphref)) res+=" style='color:#CC3333;'"
				res+=">ALGEMEEN</TD></TR>" +
				"<TR HEIGHT=13><TD></TD></TR>";
				telsm++;
			}
			tel++;
			blokcolor=getblokcolor(tel,bloks);
			res+="<TR HEIGHT=13><TD WIDTH=13 VALIGN=TOP><div style='width:13px;height:13px;background-color:"+blokcolor+"'><img src='pix/menubal.gif'/></div></TD><TD WIDTH=13></TD>"+
				"<TD style='line-height:100%;'><a href='"+JShref[t]+"' onmouseover='showmenusub("+afd+","+JSid[t]+","+(tel+telsm)+")' class='navknop'";
			if ((JSactief[t]==1)||(location.pathname==JShref[t])) res+=" style='color:"+blokcolor+";'";
			res+=">"+JStxt[t].toUpperCase()+"</a>";
			if (JSlvl[t+1]!=0) res+="<img src='pix/menupijl.gif'/>"
			res+="</nobr></TD></TR><TR HEIGHT=13><TD></TD></TR>";
		}
		t++;
	}
	document.all.menu1.style.visibility="hidden";
	document.all.menu2.style.visibility="hidden";
	if (res!="")
	{
		res="<TABLE cellspacing=0 cellpadding=0 style='width:208px;background-color:#FFFFFF;border:solid 1px #C0C0C0;'>" +
			"<TR><TD><table style='width:206px;' border=0 cellspacing=0 cellpadding=0>" +
				"<tr HEIGHT=13><td></td></tr>"+res+"</table>"+
			"</TD></TR></TABLE>";
		document.all.menu1.innerHTML=res;
		if (menudodelay==true)
			{ showmenutimer=setTimeout("document.all.menu1.style.visibility='visible';",100); } // <<<
		else
			{ document.all.menu1.style.visibility="visible"; }
	}
}

