function cv(str) {
//  if (navigator.appName!="Netscape") return str;
/*
  var newstr="", i="";                                   
  for(var c=0;  c<str.length;  c++)  {
    i = escape(str.charAt(c));
    if (isNaN(parseInt(i.charAt(1)+i.charAt(2),16)))
      newstr+= str.charAt(c);
    else
      newstr+= "&#" + parseInt(i.charAt(1)+i.charAt(2),16) + ";";               
  }
  return newstr;*/
  return str;
}


function MM_findObj(n, d) {
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function MM_swapImage() {
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_swapImgRestore() {
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() {
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

MM_preloadImages('/imgnav/btn_about_over.gif','/imgnav/btn_cmc_over.gif','/imgnav/btn_comm_over.gif','/imgnav/btn_exams_over.gif','/imgnav/btn_libr_over.gif','/imgnav/btn_news_over.gif');


function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh) {
	this.version = "990702 [Menu; menu.js]";
//	this.type = "Menu";
	this.menuWidth = mw;
	this.menuItemHeight = mh;
	this.fontSize = fs||12;
	this.fontWeight = "plain";
	this.fontFamily = fnt||"arial,helvetica,verdana,sans-serif";
	this.fontColor = fclr||"#000000";
	this.fontColorHilite = fhclr||"#ffffff";
	this.bgColor = "#555555";
	this.menuBorder = 1;
	this.menuItemBorder = 1;
	this.menuItemBgColor = bg||"#cccccc";
	this.menuLiteBgColor = "#ffffff";
	this.menuBorderBgColor = "#777777";
	this.menuHiliteBgColor = bgh||"#000084";
	this.menuContainerBgColor = "#cccccc";
	this.items = new Array();
	this.actions = new Array();

	this.hideOnMouseOut = true;

	this.addMenuItem = addMenuItem;
	this.addMenuSeparator = addMenuSeparator;
	this.writeMenus = writeMenus;
	this.FW_showMenu = FW_showMenu;
	this.onMenuItemOver = onMenuItemOver;
	this.onMenuItemAction = onMenuItemAction;
	this.hideMenu = hideMenu;

	if (!window.menus) window.menus = new Array();
//	this.label = label || "menuLabel" + window.menus.length;
//	window.menus[this.label] = this;
	window.menus[window.menus.length] = this;
	if (!window.activeMenus) window.activeMenus = new Array();
}

function addMenuItem(label, action) {
	this.items[this.items.length] = cv(label);
	this.actions[this.actions.length] = action;
}

function addMenuSeparator() {
	this.items[this.items.length] = "separator";
	this.actions[this.actions.length] = "";
	this.menuItemBorder = 0;
}

function FIND(item) {
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

function writeMenus(container) {
	if (window.triedToWriteMenus) return;

	if (!container && document.layers) {
		window.delayWriteMenus = this.writeMenus;
		var timer = setTimeout('delayWriteMenus()', 250);
		container = new Layer(100);
		clearTimeout(timer);
	} else if (document.all || document.hasChildNodes) {
		document.writeln('<SPAN ID="menuContainer"></SPAN>');
		container = FIND("menuContainer");
	}

	window.fwHideMenuTimer = null;
	if (!container) return;	
	window.triedToWriteMenus = true; 
	container.isContainer = true;
	container.menus = new Array();
	for (var i=0; i<window.menus.length; i++) 
		container.menus[i] = window.menus[i];
	window.menus.length = 0;
	var countMenus = 0;
	var countItems = 0;
	var top = 0;
	var content = '';
	var lrs = false;
	var theStat = "";
	var tsc = 0;
	if (document.layers) lrs = true;
	for (i=0; i<container.menus.length; i++, countMenus++) {
		var menu = container.menus[i];
		if (menu.bgImageUp) {
			menu.menuBorder = 0;
			menu.menuItemBorder = 0;
		}
		if (lrs) {
			var menuLayer = new Layer(100, container);
			var lite = new Layer(100, menuLayer);
			lite.top = menu.menuBorder;
			lite.left = menu.menuBorder;
			var body = new Layer(100, lite);
			body.top = menu.menuBorder;
			body.left = menu.menuBorder;
		} else {
			content += ''+
			'<DIV ID="menuLayer'+ countMenus +'" STYLE="position:absolute;z-index:1;left:10;top:'+ (i * 100) +';visibility:hidden;">\n'+
			'  <DIV ID="menuLite'+ countMenus +'" STYLE="position:absolute;z-index:1;left:'+ menu.menuBorder +';top:'+ menu.menuBorder +';visibility:hide;" onMouseOut="mouseoutMenu();">\n'+
			'	 <DIV ID="menuFg'+ countMenus +'" STYLE="position:absolute;left:'+ menu.menuBorder +';top:'+ menu.menuBorder +';visibility:hide;">\n'+
			'';
		}
		var x=i;
		for (i=0; i<menu.items.length; i++) {
			var item = menu.items[i];
			var childMenu = false;
			var defaultHeight = menu.fontSize+6;
			var defaultIndent = menu.fontSize;
			if (item.label) {
				item = item.label;
				childMenu = true;
			}
			menu.menuItemHeight = menu.menuItemHeight || defaultHeight;
			menu.menuItemIndent = menu.menuItemIndent || defaultIndent;
			var itemProps = 'font-family:' + menu.fontFamily +';font-weight:' + menu.fontWeight + ';fontSize:' + menu.fontSize + ';';
			if (menu.fontStyle) itemProps += 'font-style:' + menu.fontStyle + ';';
			if (document.all) 
				itemProps += 'font-size:' + menu.fontSize + ';" onMouseOver="onMenuItemOver(null,this);" onClick="onMenuItemAction(null,this);';
			else if (!document.layers) {
				itemProps += 'font-size:' + menu.fontSize + 'px;';
			}
			var l;
			if (lrs) {
				l = new Layer(800,body);
			}
			var dTag	= '<DIV ID="menuItem'+ countItems +'" STYLE="position:absolute;left:0;top:'+ (i * menu.menuItemHeight) +';'+ itemProps +'">';
			var dClose = '</DIV>'
			if (menu.bgImageUp) {
				menu.menuBorder = 0;
				menu.menuItemBorder = 0;
				dTag	= '<DIV ID="menuItem'+ countItems +'" STYLE="background:url('+menu.bgImageUp+');position:absolute;left:0;top:'+ (i * menu.menuItemHeight) +';'+ itemProps +'">';
				if (document.layers) {
					dTag = '<LAYER BACKGROUND="'+menu.bgImageUp+'" ID="menuItem'+ countItems +'" TOP="'+ (i * menu.menuItemHeight) +'" style="' + itemProps +'">';
					dClose = '</LAYER>';
				}
			}
			var textProps = 'position:absolute;left:' + menu.menuItemIndent + ';top:1;';
			if (lrs) {
				textProps +=itemProps;
				dTag = "";
				dClose = "";
			}

			var dText	= '<DIV ID="menuItemText'+ countItems +'" STYLE="' + textProps + 'color:'+ menu.fontColor +';">'+ item +'&nbsp</DIV>\n<DIV ID="menuItemHilite'+ countItems +'" STYLE="' + textProps + 'top:1;color:'+ menu.fontColorHilite +';visibility:hidden;">'+ item +'&nbsp</DIV>';
			if (item == "separator") {
				content += ( dTag + '<DIV ID="menuSeparator'+ countItems +'" STYLE="position:absolute;left:1;top:2;"></DIV>\n<DIV ID="menuSeparatorLite'+ countItems +'" STYLE="position:absolute;left:1;top:2;"></DIV>\n' + dClose);
			} else if (childMenu) {
				content += ( dTag + dText + '<DIV ID="childMenu'+ countItems +'" STYLE="position:absolute;left:0;top:3;"><IMG SRC="'+ menu.childMenuIcon +'"></DIV>\n' + dClose);
			} else {
				content += ( dTag + dText + dClose);
			}
			if (lrs) {
				l.document.open("text/html");
				l.document.writeln(content);
				l.document.close();	
				content = '';
				theStat += "-";
				tsc++;
				if (tsc > 50) {
					tsc = 0;
					theStat = "";
				}
				status = theStat;
			}
			countItems++;  
		}
		if (lrs) {
			var focusItem = new Layer(100, body);
			focusItem.visiblity="hidden";
			focusItem.document.open("text/html");
			focusItem.document.writeln("&nbsp;");
			focusItem.document.close();	
		} else {
		  content += '	  <DIV ID="focusItem'+ countMenus +'" STYLE="position:absolute;left:0;top:0;visibility:hide;" onClick="onMenuItemAction(null,this);">&nbsp;</DIV>\n';
		  content += '   </DIV>\n  </DIV>\n</DIV>\n';
		}
		i=x;
	}
	if (document.layers) {		
		container.clip.width = window.innerWidth;
		container.clip.height = window.innerHeight;
		container.onmouseout = mouseoutMenu;
		container.menuContainerBgColor = this.menuContainerBgColor;
		for (i=0; i<container.document.layers.length; i++) {
			proto = container.menus[i];
			menu = container.document.layers[i];
			container.menus[i].menuLayer = menu;
			container.menus[i].menuLayer.Menu = container.menus[i];
			container.menus[i].menuLayer.Menu.container = container;
			body = menu.document.layers[0].document.layers[0];
			body.clip.width = proto.menuWidth || body.clip.width;
			body.clip.height = proto.menuHeight || body.clip.height;
			for (var n=0; n<body.document.layers.length-1; n++) {
				l = body.document.layers[n];
				l.Menu = container.menus[i];
				l.menuHiliteBgColor = proto.menuHiliteBgColor;
				l.document.bgColor = proto.menuItemBgColor;
				l.saveColor = proto.menuItemBgColor;
				l.onmouseover = proto.onMenuItemOver;
				l.onclick = proto.onMenuItemAction;
				l.action = container.menus[i].actions[n];
				l.focusItem = body.document.layers[body.document.layers.length-1];
				l.clip.width = proto.menuWidth || body.clip.width + proto.menuItemIndent;
				l.clip.height = proto.menuItemHeight || l.clip.height;
				if (n>0) l.top = body.document.layers[n-1].top + body.document.layers[n-1].clip.height + proto.menuItemBorder;
				l.hilite = l.document.layers[1];
				if (proto.bgImageUp) l.background.src = proto.bgImageUp;
				l.document.layers[1].isHilite = true;
				if (l.document.layers[0].id.indexOf("menuSeparator") != -1) {
					l.hilite = null;
					l.clip.height -= l.clip.height / 2;
					l.document.layers[0].document.bgColor = proto.bgColor;
					l.document.layers[0].clip.width = l.clip.width -2;
					l.document.layers[0].clip.height = 1;
					l.document.layers[1].document.bgColor = proto.menuLiteBgColor;
					l.document.layers[1].clip.width = l.clip.width -2;
					l.document.layers[1].clip.height = 1;
					l.document.layers[1].top = l.document.layers[0].top + 1;
				} else if (l.document.layers.length > 2) {
					l.childMenu = container.menus[i].items[n].menuLayer;
					l.document.layers[2].left = l.clip.width -13;
					l.document.layers[2].top = (l.clip.height / 2) -4;
					l.document.layers[2].clip.left += 3;
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
			}
			body.document.bgColor = proto.bgColor;
			body.clip.width  = l.clip.width +proto.menuBorder;
			body.clip.height = l.top + l.clip.height +proto.menuBorder;
			focusItem = body.document.layers[n];
			focusItem.clip.width = body.clip.width;
			focusItem.Menu = l.Menu;
			focusItem.top = -30;
            focusItem.captureEvents(Event.MOUSEDOWN);
            focusItem.onmousedown = onMenuItemDown;
			menu.document.bgColor = proto.menuBorderBgColor;
			lite = menu.document.layers[0];
			lite.document.bgColor = proto.menuLiteBgColor;
			lite.clip.width = body.clip.width +1;
			lite.clip.height = body.clip.height +1;
			menu.clip.width = body.clip.width + (proto.menuBorder * 3) ;
			menu.clip.height = body.clip.height + (proto.menuBorder * 3);
		}
	} else {
		if ((!document.all) && (container.hasChildNodes)) {
			container.innerHTML=content;
		} else {
			container.document.open("text/html");
			container.document.writeln(content);
			container.document.close();	
		}
		if (!FIND("menuLayer0")) return;
		var menuCount = 0;
		for (x=0; x<container.menus.length; x++) {
			menuLayer = FIND("menuLayer" + x);
			container.menus[x].menuLayer = "menuLayer" + x;
			menuLayer.Menu = container.menus[x];
			menuLayer.Menu.container = "menuLayer" + x;
			menuLayer.style.zIndex = 1;
		    var s = menuLayer.style;
			s.top = s.pixelTop = -300;
			s.left = s.pixelLeft = -300;

			menu = container.menus[x];
			menu.menuItemWidth = menu.menuWidth || menu.menuIEWidth || 140;
			menuLayer.style.backgroundColor = menu.menuBorderBgColor;
			top = 0;
			for (i=0; i<container.menus[x].items.length; i++) {
				l = FIND("menuItem" + menuCount);
				l.Menu = container.menus[x];
				if (l.addEventListener) {
					l.style.width = menu.menuItemWidth;	
					l.style.height = menu.menuItemHeight;
					l.style.top = top;
					l.addEventListener("mouseover", onMenuItemOver, false);
					l.addEventListener("click", onMenuItemAction, false);
					l.addEventListener("mouseout", mouseoutMenu, false);
				} else { //ie
					l.style.pixelWidth = menu.menuItemWidth;	
					l.style.pixelHeight = menu.menuItemHeight;
					l.style.pixelTop = top;
				}
				top = top + menu.menuItemHeight+menu.menuItemBorder;
				l.style.fontSize = menu.fontSize;
				l.style.backgroundColor = menu.menuItemBgColor;
				l.style.visibility = "inherit";
				l.saveColor = menu.menuItemBgColor;
				l.menuHiliteBgColor = menu.menuHiliteBgColor;
				l.action = container.menus[x].actions[i];
				l.hilite = FIND("menuItemHilite" + menuCount);
				l.focusItem = FIND("focusItem" + x);
				l.focusItem.style.pixelTop = l.focusItem.style.top = -30;
				var childItem = FIND("childMenu" + menuCount);
				if (childItem) {
					l.childMenu = container.menus[x].items[i].menuLayer;
					childItem.style.pixelLeft = childItem.style.left = menu.menuItemWidth -11;
					childItem.style.pixelTop = childItem.style.top =(menu.menuItemHeight /2) -4;
					//childItem.style.pixelWidth = 30 || 7;
					//childItem.style.clip = "rect(0 7 7 3)";
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
				var sep = FIND("menuSeparator" + menuCount);
				if (sep) {
					sep.style.clip = "rect(0 " + (menu.menuItemWidth - 3) + " 1 0)";
					sep.style.width = sep.style.pixelWidth = menu.menuItemWidth;	
					sep.style.backgroundColor = menu.bgColor;
					sep = FIND("menuSeparatorLite" + menuCount);
					sep.style.clip = "rect(1 " + (menu.menuItemWidth - 3) + " 2 0)";
					sep.style.width = sep.style.pixelWidth = menu.menuItemWidth;	
					sep.style.backgroundColor = menu.menuLiteBgColor;
					l.style.height = l.style.pixelHeight = menu.menuItemHeight/2;
					l.isSeparator = true
					top -= (menu.menuItemHeight - l.style.pixelHeight)
				} else {
					l.style.cursor = "hand"
				}
				menuCount++;
			}
			menu.menuHeight = top-1;
			lite = FIND("menuLite" + x);
			s = lite.style;
			s.height = s.pixelHeight = menu.menuHeight +(menu.menuBorder * 2);
			s.width = s.pixelWidth = menu.menuItemWidth + (menu.menuBorder * 2);
			s.backgroundColor = menu.menuLiteBgColor;

			body = FIND("menuFg" + x);
			s = body.style;
			s.height = s.pixelHeight = menu.menuHeight + menu.menuBorder;
			s.width = s.pixelWidth = menu.menuItemWidth + menu.menuBorder;
			s.backgroundColor = menu.bgColor;

			s = menuLayer.style;
			s.width = s.pixelWidth  = menu.menuItemWidth + (menu.menuBorder * 4);
			s.height = s.pixelHeight  = menu.menuHeight+(menu.menuBorder*4);
		}
	}
	if (document.captureEvents) {	
		document.captureEvents(Event.MOUSEUP);
	}
	if (document.addEventListener) {	
		document.addEventListener("mouseup", onMenuItemOver, false);
	}
	if (document.layers && window.innerWidth) {
		window.onresize = NS4resize;
		window.NS4sIW = window.innerWidth;
		window.NS4sIH = window.innerHeight;
	}
	document.onmouseup = mouseupMenu;
	window.fwWroteMenu = true;
	status = "";
}

function NS4resize() {
	if (NS4sIW < window.innerWidth || 
		NS4sIW > window.innerWidth || 
		NS4sIH > window.innerHeight || 
		NS4sIH < window.innerHeight ) 
	{
		window.location.reload();
	}
}

function onMenuItemOver(e, l) {
	FW_clearTimeout();
	l = l || this;
	a = window.ActiveMenuItem;
	if (document.layers) {
		if (a) {
			a.document.bgColor = a.saveColor;
			if (a.hilite) a.hilite.visibility = "hidden";
			if (a.Menu.bgImageOver) {
				a.background.src = a.Menu.bgImageUp;
			}
			a.focusItem.top = -100;
			a.clicked = false;
		}
		if (l.hilite) {
			l.document.bgColor = l.menuHiliteBgColor;
			l.zIndex = 1;
			l.hilite.visibility = "inherit";
			l.hilite.zIndex = 2;
			l.document.layers[1].zIndex = 1;
			l.focusItem.zIndex = this.zIndex +2;
		}
		if (l.Menu.bgImageOver) {
			l.background.src = l.Menu.bgImageOver;
		}
		l.focusItem.top = this.top;
	} else if (l.style && l.Menu) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.Menu.bgImageUp) {
				a.style.background = "url(" + a.Menu.bgImageUp +")";;
			}
		} 
		if (l.isSeparator) return;
		l.style.backgroundColor = l.menuHiliteBgColor;
		l.zIndex = 1;
		if (l.Menu.bgImageOver) {
			l.style.background = "url(" + l.Menu.bgImageOver +")";
		}
		if (l.hilite) {
			l.style.backgroundColor = l.menuHiliteBgColor;
			l.hilite.style.visibility = "inherit";
		}
		l.focusItem.style.top = l.focusItem.style.pixelTop = l.style.pixelTop;
		l.focusItem.style.zIndex = l.zIndex +1;
	} else {
		return;
	}
	window.ActiveMenuItem = l;
}

function onMenuItemAction(e, l) {
	l = window.ActiveMenuItem;
	if (!l) return;
	hideActiveMenus();
	if (l.action) {
		eval("" + l.action);
	}
	window.ActiveMenuItem = 0;
}

function FW_clearTimeout()
{
	if (fwHideMenuTimer) clearTimeout(fwHideMenuTimer);
	fwHideMenuTimer = null;
	fwDHFlag = false;
}

function FW_startTimeout()
{
	fwStart = new Date();
	fwDHFlag = true;
	fwHideMenuTimer = setTimeout("fwDoHide()", 300);
}

function fwDoHide()
{
	if (!fwDHFlag) return;
	var elapsed = new Date() - fwStart;
	if (elapsed < 300) {
		fwHideMenuTimer = setTimeout("fwDoHide()", 330-elapsed);
		return;
	}
	fwDHFlag = false;
	hideActiveMenus();
	window.ActiveMenuItem = 0;
}

function FW_showMenu(menu, x, y, child) {
	if (!window.fwWroteMenu) return;
	FW_clearTimeout();
	if (document.layers) {
		if (menu) {
			var l = menu.menuLayer || menu;
			l.left = 1;
			l.top = 1;
			hideActiveMenus();
			if (this.visibility) l = this;
			window.ActiveMenu = l;
		} else {
			l = child;
		}
		if (!l) return;
		for (var i=0; i<l.layers.length; i++) { 			   
			if (!l.layers[i].isHilite) 
				l.layers[i].visibility = "inherit";
			if (l.layers[i].document.layers.length > 0) 
				FW_showMenu(null, "relative", "relative", l.layers[i]);
		}
		if (l.parentLayer) {
			if (x != "relative") 
				l.parentLayer.left = x || window.pageX || 0;
			if (l.parentLayer.left + l.clip.width > window.innerWidth) 
				l.parentLayer.left -= (l.parentLayer.left + l.clip.width - window.innerWidth);
			if (y != "relative") 
				l.parentLayer.top = y || window.pageY || 0;
			if (l.parentLayer.isContainer) {
				l.Menu.xOffset = window.pageXOffset;
				l.Menu.yOffset = window.pageYOffset;
				l.parentLayer.clip.width = window.ActiveMenu.clip.width +2;
				l.parentLayer.clip.height = window.ActiveMenu.clip.height +2;
				if (l.parentLayer.menuContainerBgColor) l.parentLayer.document.bgColor = l.parentLayer.menuContainerBgColor;
			}
		}
		l.visibility = "inherit";
		if (l.Menu) l.Menu.container.visibility = "inherit";
	} else if (FIND("menuItem0")) {
		l = menu.menuLayer || menu;	
		hideActiveMenus();
		if (typeof(l) == "string") {
			l = FIND(l);
		}
		window.ActiveMenu = l;
		var s = l.style;
		s.visibility = "inherit";
		if (x != "relative") 
			s.left = s.pixelLeft = x || (window.pageX + document.body.scrollLeft) || 0;
		if (y != "relative") 
			s.top = s.pixelTop = y || (window.pageY + document.body.scrollTop) || 0;
		l.Menu.xOffset = document.body.scrollLeft;
		l.Menu.yOffset = document.body.scrollTop;
	}
	if (menu) {
		window.activeMenus[window.activeMenus.length] = l;
	}
}

function onMenuItemDown(e, l) {
	var a = window.ActiveMenuItem;
	if (document.layers) {
		if (a) {
			a.eX = e.pageX;
			a.eY = e.pageY;
			a.clicked = true;
		}
    }
}

function mouseupMenu(e)
{
	hideMenu(true, e);
	hideActiveMenus();
	return true;
}

function mouseoutMenu()
{
	hideMenu(false, false);
	return true;
}


function hideMenu(mouseup, e) {
	var a = window.ActiveMenuItem;
	if (a && document.layers) {
		a.document.bgColor = a.saveColor;
		a.focusItem.top = -30;
		if (a.hilite) a.hilite.visibility = "hidden";
		if (mouseup && a.action && a.clicked && window.ActiveMenu) {
 			if (a.eX <= e.pageX+15 && a.eX >= e.pageX-15 && a.eY <= e.pageY+10 && a.eY >= e.pageY-10) {
				setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 2);
			}
		}
		a.clicked = false;
		if (a.Menu.bgImageOver) {
			a.background.src = a.Menu.bgImageUp;
		}
	} else if (window.ActiveMenu && FIND("menuItem0")) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.Menu.bgImageUp) {
				a.style.background = "url(" + a.Menu.bgImageUp +")";;
			}
		}
	}
	if (!mouseup && window.ActiveMenu) {
		if (window.ActiveMenu.Menu) {
			if (window.ActiveMenu.Menu.hideOnMouseOut) {
				FW_startTimeout();
			}
			return(true);
		}
	}
	return(true);
}

function PxToNum(pxStr)
{
	if (pxStr.length > 2) {
		n = Number(pxStr.substr(0, pxStr.length-2));
		return(n);
	}
	return(0);
}


function hideActiveMenus() {
	if (!window.activeMenus) return;
	for (var i=0; i < window.activeMenus.length; i++) {
		if (!activeMenus[i]) continue;
		if (activeMenus[i].visibility && activeMenus[i].Menu) {
			activeMenus[i].visibility = "hidden";
			activeMenus[i].Menu.container.visibility = "hidden";
			activeMenus[i].Menu.container.clip.left = 0;
		} else if (activeMenus[i].style) {
			var s = activeMenus[i].style;
			s.visibility = "hidden";
			s.left = -200;
			s.top = -200;
		}
	}
	if (window.ActiveMenuItem) {
		hideMenu(false, false);
	}
	window.activeMenus.length = 0;
}

                    
function fwLoadMenus() {
  if (window.fw_menu_0) return;
  window.fw_menu_0 = new Menu("root",100,17,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#000099","#716dab","#b3b0d2");
  fw_menu_0.addMenuItem("Миссия","location='/mission.html'");
  fw_menu_0.addMenuItem("Команда","location='/theteam.html'");
  fw_menu_0.addMenuItem("История сайта","location='/sitehist.html'");
   fw_menu_0.fontWeight="bold";
   fw_menu_0.hideOnMouseOut=true;
  window.fw_menu_1 = new Menu("root",90,17,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#000099","#716dab","#b3b0d2");
  fw_menu_1.addMenuItem("Расписание","location='/timetab.html'");
  fw_menu_1.addMenuItem("Предметы","location='/courses.html'");
  fw_menu_1.addMenuItem("Литература","location='/libbooks.html'");
   fw_menu_1.fontWeight="bold";
   fw_menu_1.hideOnMouseOut=true;
  window.fw_menu_2 = new Menu("root",115,17,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#000099","#716dab","#b3b0d2");
  fw_menu_2.addMenuItem("Общие сведения","location='/faculty.html'");
  fw_menu_2.addMenuItem("История","location='/articles/antik.html'");
  fw_menu_2.addMenuItem("Кафедры","location='/depts.html'");
  fw_menu_2.addMenuItem("Студсовет");
  fw_menu_2.fontWeight="bold";
   fw_menu_2.hideOnMouseOut=true;
  window.fw_menu_3 = new Menu("root",140,13,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#000099","#716dab","#b3b0d2");
  fw_menu_3.addMenuItem("Статьи","location='/articles/'");
  fw_menu_3.addMenuItem("1 семестр","location='/files01.html'");
  fw_menu_3.addMenuItem("2 семестр","location='/files02.html'");
  fw_menu_3.addMenuItem("3 семестр","location='/files03.html'");
  fw_menu_3.addMenuItem("4 семестр","location='/files04.html'");
  fw_menu_3.addMenuItem("5 семестр","location='/files05.html'");
  fw_menu_3.addMenuItem("6 семестр","location='/files06.html'");
  fw_menu_3.addMenuItem("7 семестр","location='/files07.html'");
  fw_menu_3.addMenuItem("8 семестр","location='/files08.html'");
  fw_menu_3.addMenuItem("9 семестр","location='/files09.html'");
  fw_menu_3.addMenuItem("10 семестр","location='/files10.html'");
  fw_menu_3.addMenuItem("аспирантура","location='/filesasp.html'");
  fw_menu_3.addMenuItem("с/к гуманитарне","location='/filesskg.html'");
  fw_menu_3.addMenuItem("с/к математические","location='/filesskm.html'");
   fw_menu_3.fontWeight="bold";
   fw_menu_3.hideOnMouseOut=true;
  window.fw_menu_4 = new Menu("root",115,17,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#000099","#716dab","#b3b0d2");
  fw_menu_4.addMenuItem("Форум","location='http://forum.cmc-msu.ru/'");
  fw_menu_4.addMenuItem("Общение","location='/comms.html'");
  fw_menu_4.addMenuItem("Ссылки","location='/links.html'");
   fw_menu_4.fontWeight="bold";
   fw_menu_4.hideOnMouseOut=true;
  window.fw_menu_5 = new Menu("root",165,17,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#000099","#716dab","#b3b0d2");
  fw_menu_5.addMenuItem("204 группа 1999/2000","location='/personal/vmk204/about.html'");
  fw_menu_5.addMenuItem("212 группа 2000/2001","location='/personal/vmk212/about212.html'");
  fw_menu_5.addMenuItem("Фотогалерея 204 группы 1999/2000","location='/personal/vmk204/photos.html'");
   fw_menu_5.fontWeight="bold";
   fw_menu_5.hideOnMouseOut=true;

  fw_menu_1.writeMenus();
}


//////////////////////////////////////////

function d(str) { document.write(str); }

d('<table cellpadding="0" cellspacing="0">');
d('<td valign="top" bgcolor="#665C9A">');
d('<table cellpadding="0" cellspacing="0" width="205">');

if (document.images) {
r4_c1_f3 = new Image(193 ,21); r4_c1_f3.src = "/imgnav/btn_news_over.gif";
r4_c1_f1 = new Image(193 ,21); r4_c1_f1.src = "/imgnav/r4_c1.gif";
r6_c1_f4 = new Image(193 ,21); r6_c1_f4.src = "/imgnav/btn_about_over.gif";
r6_c1_f1 = new Image(193 ,21); r6_c1_f1.src = "/imgnav/r6_c1.gif";
r8_c1_f5 = new Image(193 ,21); r8_c1_f5.src = "/imgnav/btn_exams_over.gif";
r8_c1_f1 = new Image(193 ,21); r8_c1_f1.src = "/imgnav/r8_c1.gif";
r10_c1_f6 = new Image(193 ,21); r10_c1_f6.src = "/imgnav/btn_libr_over.gif";
r10_c1_f1 = new Image(193 ,21); r10_c1_f1.src = "/imgnav/r10_c1.gif";
r12_c1_f7 = new Image(193 ,21); r12_c1_f7.src = "/imgnav/btn_cmc_over.gif";
r12_c1_f1 = new Image(193 ,21); r12_c1_f1.src = "/imgnav/r12_c1.gif";
r14_c1_f8 = new Image(193 ,21); r14_c1_f8.src = "/imgnav/btn_comm_over.gif";
r14_c1_f1 = new Image(193 ,21); r14_c1_f1.src = "/imgnav/r14_c1.gif";
}

d('  <tr valign="top">');
d('   <td><img border="0" name="r1_c1" src="/imgnav/r1_c1.gif" width="193" height="60"></td>');
d('   <td rowspan="14"><img border="0" name="r1_c4" src="/imgnav/r1_c4.gif" width="12" height="387"></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><img border="0" name="r2_c1" src="/imgnav/r2_c1.gif" width="193" height="105"></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><a href="/index.html" onMouseOut="MM_swapImgRestore();"  onMouseOver="MM_swapImage(\'r4_c1\',\'\',\'/imgnav/btn_news_over.gif\',1);"><img border="0" name="r4_c1" src="/imgnav/r4_c1.gif" width="193" height="21" alt="Новости"></a></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><img border="0" name="r5_c1" src="/imgnav/r5_c1.gif" width="193" height="8"></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><a href="/theteam.html" onMouseOut="MM_swapImgRestore();FW_startTimeout();" onMouseOver="window.FW_showMenu(window.fw_menu_0,180,186);MM_swapImage(\'r6_c1\',\'\',\'/imgnav/btn_about_over.gif\',1);" ><img border="0" name="r6_c1" src="/imgnav/r6_c1.gif" width="193" height="21" alt="Про нас"></a></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><img border="0" name="r7_c1" src="/imgnav/r7_c1.gif" width="193" height="8"></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><a href="/timetab.html" onMouseOut="MM_swapImgRestore();FW_startTimeout();" onMouseOver="window.FW_showMenu(window.fw_menu_1,180,205);MM_swapImage(\'r8_c1\',\'\',\'/imgnav/btn_exams_over.gif\',1);" ><img border="0" name="r8_c1" src="/imgnav/r8_c1.gif" width="193" height="21" alt="Обучение"></a></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><img border="0" name="r9_c1" src="/imgnav/r9_c1.gif" width="193" height="8"></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><a href="/files.html" onMouseOut="MM_swapImgRestore();FW_startTimeout();"  onMouseOver="window.FW_showMenu(window.fw_menu_3,180,123);MM_swapImage(\'r10_c1\',\'\',\'/imgnav/btn_libr_over.gif\',1);" ><img border="0" name="r10_c1" src="/imgnav/r10_c1.gif" width="193" height="21" alt="Библиотека"></a></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><img border="0" name="r11_c1" src="/imgnav/r11_c1.gif" width="193" height="7"></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><a href="/faculty.html" onMouseOut="MM_swapImgRestore();FW_startTimeout();" onMouseOver="window.FW_showMenu(window.fw_menu_2,180,255);MM_swapImage(\'r12_c1\',\'\',\'/imgnav/btn_cmc_over.gif\',1);" ><img border="0" name="r12_c1" src="/imgnav/r12_c1.gif" width="193" height="21" alt="Факультет ВМК"></a></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><img border="0" name="r13_c1" src="/imgnav/r13_c1.gif" width="193" height="8"></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><a href="http://forum.cmc-msu.ru" onMouseOut="MM_swapImgRestore();FW_startTimeout();"  onMouseOver="window.FW_showMenu(window.fw_menu_4,180,292);MM_swapImage(\'r14_c1\',\'\',\'/imgnav/btn_comm_over.gif\',1);" ><img border="0" name="r14_c1" src="/imgnav/r14_c1.gif" width="193" height="21" alt="Общение"></a></td>');
d('  </tr>');
d('  <tr valign="top">');
d('   <td><img border="0" name="r15_c1" src="/imgnav/r15_c1.gif" width="193" height="57"></td>');
d('  </tr>');
d('</table>');
d('<table cellpadding="0" cellspacing="0" width="100%" height="100%">');
d('  <tr valign="top">');
d('   <td align="right">') ;
d('<a href="http://counter.rambler.ru/top100/"><img border="0" src="http://counter.rambler.ru/top100.cnt?300237" alt="Rambler\'s Top100" width=81 height=63></a>');
d('</td><td width="4"></td><td bgcolor="#67609C" width="6"></td>');
d('  </tr>');
d('</table>');
d('</td><td width="100%" valign="top">');
d('<table cellpadding="0" cellspacing="0" width="100%">');
d('   <tr><td rowspan="2" valign="top"><img name="r1_c5" src="/imgnav/r1_c5.gif" width="435" height="93" alt="Неофициальный студенческий сайт факультета ВМиК МГУ"></td><td bgcolor="#665C9A" height="76" width="100%"></td></tr>');
d('   <tr><td height="16" width="100%"></td></tr>');
d('   <tr><td valign="top" colspan="2"><table cellpadding="0" cellspacing="0" width="97%"><tr><td width="10"></td><td valign="top" class="tdText" rowspan="13">');

fwLoadMenus();

