

var myURL = document.URL;

//the following line sets the separator  in document's URL (server ("/"), IE local ("\\"), NS local ("/"))
var splitedURL = myURL.split("/");

var urlLength = splitedURL.length;

var pageName = splitedURL[urlLength - 1];
var sectionName = splitedURL[urlLength - 2];


//start top menu construction
function doTopMenu() {
//first row
document.write("<table width=\"10%\"><tr>");

for (j = 0; j < firstRow; ++j) {
		thisItem = topMenu[j][0];
		thisLink = topMenu[j][1];
		breakLink = thisLink.split("/");
		sectionFolder = breakLink[1];
		
		if (sectionFolder.toLowerCase() == sectionName.toLowerCase()) {

document.write("<td><img src=\"../images/red.gif\" width=\"1\" height=\"10\"></td><td bgcolor=\"#9999FF\" class=\"topmenu\" nowrap>&nbsp;&nbsp;" + thisItem + "&nbsp;&nbsp;</td>");
		}
		else {
		
document.write("<td><img src=\"../images/red.gif\" width=\"1\" height=\"10\"></td><td bgcolor=\"#000066\" onmouseover=\"bgColor=\'#9999FF\'\" onmouseout=\"bgColor=\'#000066\'\" nowrap><ILAYER><LAYER onmouseover=\"bgColor=\'#9999FF\'\" onmouseout=\"bgColor=\'#000066\'\"><a class=\"topmenu\" href=\"" + thisLink + "\">&nbsp;&nbsp;" + thisItem + "&nbsp;&nbsp;</a></layer></ilayer></td>");

		}
		}
		
document.write("<td><img src=\"../images/red.gif\" width=\"1\" height=\"10\"></td></tr></table>");
//end first row

//second row
if (secondRow != 0) {
	
document.write("<table width=\"10%\"><tr>");

for (j = firstRow; j < firstRow + secondRow; ++j) {
		thisItem = topMenu[j][0];
		thisLink = topMenu[j][1];
		breakLink = thisLink.split("/");
		sectionFolder = breakLink[1];
		
		if (sectionFolder.toLowerCase() == sectionName.toLowerCase()) {

document.write("<td><img src=\"../images/red.gif\" width=\"1\" height=\"10\"></td><td bgcolor=\"#9999FF\" class=\"topmenu\" nowrap>&nbsp;&nbsp;" + thisItem + "&nbsp;&nbsp;</td>");
		}
		else {
		
document.write("<td><img src=\"../images/red.gif\" width=\"1\" height=\"10\"></td><td bgcolor=\"#000066\" onmouseover=\"bgColor=\'#9999FF\'\" onmouseout=\"bgColor=\'#000066\'\" nowrap><ILAYER><LAYER onmouseover=\"bgColor=\'#9999FF\'\" onmouseout=\"bgColor=\'#000066\'\"><a class=\"topmenu\" href=\"" + thisLink + "\">&nbsp;&nbsp;" + thisItem + "&nbsp;&nbsp;</a></layer></ilayer></td>");

		}
		}
		
document.write("<td><img src=\"../images/red.gif\" width=\"1\" height=\"10\"></td></tr></table>");
}
}
//end second row



//start left menu construction

function doLeftMenu() {

document.write("<table width=\"100%\">");


for (i=0; i<leftMenu.length; ++i) {
		thisType = leftMenu[i][0];
		thisLabel = leftMenu[i][1];
		thisLink = leftMenu[i][2];


if (thisType == 1) {


	if (pageName.toLowerCase() == thisLink.toLowerCase()) {

	document.write("<tr><td><img src=\"../images/spacer.gif\" width=\"1\" heigth=\"2\"></td></tr><tr><td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"1%\"><img src=\"../images/b_parent.gif\"></td><td class=\"parent\" width=\"99%\" bgcolor=\"#000066\" nowrap>&nbsp;&nbsp;" + thisLabel + "</td></tr></table></td></tr>");
	}
	
	else {

	document.write("<tr><td><img src=\"../images/spacer.gif\" width=\"1\" heigth=\"2\"></td></tr><tr><td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"1%\"><img src=\"../images/b_parent.gif\"></td><td width=\"99%\" bgcolor=\"#ff0000\" onmouseover=\"bgColor=\'#000066\'\" onmouseout=\"bgColor=\'#ff0000\'\" nowrap><ILAYER><LAYER width=\"111\" onmouseover=\"bgColor=\'#000066\'\" onmouseout=\"bgColor=\'#ff0000\'\"><a class=\"parent\" href=\"" + thisLink + "\">&nbsp;&nbsp;" + thisLabel + "</a></layer></ilayer></td></tr></table></td></tr>");

	}
}

else {

	if (pageName.toLowerCase() == thisLink.toLowerCase()) {

	document.write("<tr><td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"1%\"><img src=\"../images/b_child.gif\"></td><td class=\"child\" width=\"99%\" bgcolor=\"#000066\" nowrap>&nbsp;&nbsp;" + thisLabel + "</td></tr></table></td></tr>");

	}
	else {
	
	document.write("<tr><td><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"1%\"><img src=\"../images/b_child.gif\"></td><td width=\"99%\" bgcolor=\"#ff0000\" onmouseover=\"bgColor=\'#000066\'\" onmouseout=\"bgColor=\'#ff0000\'\" nowrap><ILAYER><LAYER width=\"106\" onmouseover=\"bgColor=\'#000066\'\" onmouseout=\"bgColor=\'#ff0000\'\"><a class=\"child\" href=\"" + thisLink + "\">&nbsp;&nbsp;" + thisLabel + "</a></layer></ilayer></td></tr></table></td></tr>");

	}
}
	}
document.write("</table>");
}
//end left menu construction
