function adjust() {
	if (top.menuframe == null)
	    return;
	if (top.menuframe.document.AppletMenu == null)
	    return;
	var myURL = document.URL;
	var i = top.document.URL.indexOf("index.html");
	if (i >= 0) {
	    var topURL = top.document.URL.substring(0, i);
	    var curURL = myURL.substring(0, i);
	    if (myURL.indexOf("servlet") < 0 && topURL != curURL && location.pathname.substring(0, 4) != "/_vt") {
		top.menuframe.location = curURL + "menu/menu.html";
	    }
	}
	if (top.menuframe.document.readyState != "complete")
	    setTimeout("adjust()", 200);
	else
            top.menuframe.document.AppletMenu.adjust(myURL);
}

