 // This file contains the menu settings for hierarchical menus,
 // function to handle mouse overs on menu items and
 // the Browse function to set mutiple frames in one URL
<!--
     NS4 = (document.layers);
     IE4 = (document.all);
    ver4 = (NS4 || IE4);
     IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
   isMac = (navigator.appVersion.indexOf("Mac") != -1);
  isMenu = (NS4 || (IE4 && !isMac) || (IE5 && isMac));

function popUp(){return};
function popDown(){return};

function doMouseOver() {
	if (IE4 || IE5) {
		oSource = event.srcElement;
        pSource = event.srcElement.parentElement;
        ppSource = pSource.parentElement;       
        oSource.style.color = "3A2985";
        oSource.style.backgroundColor = "#E7EFFF";
        pSource.style.backgroundColor = "#E7EFFF";
        ppSource.style.backgroundColor = "#E7EFFF";
	}
	else {
		document.classes.menu.all.backgroundColor = "#E7EFFF";
	}       
};

function doMouseOut() {
        if (IE4 || IE5) {
                oSource = event.srcElement;
                pSource = event.srcElement.parentElement;
                ppSource = pSource.parentElement;
                oSource.style.color = "3A2985";
                oSource.style.backgroundColor = "#ffffff";      
                pSource.style.backgroundColor = "#ffffff";
                ppSource.style.backgroundColor = "#ffffff";
        }
        else {
                document.classes.menu.all.backgroundColor = "#ffffff";
        }       

};

if (!ver4) event=null;

if (isMenu) {
		menuVersion = 3;
        menuWidth = 163;
        childOverlap = 0;
        childOffset = 0;
        perCentOver = null;
        secondsVisible = 1,5;
        fntCol = "white";
        fntSiz = "7.5";
        fntBold = false;
        fntItal = false;
        fntFam = "Verdana";
        backCol = "#006699";
        overCol = "#F5F8FD";
        overFnt = "3A2985";
        borWid = 1;
        borCol = "#ABB0D4";
        borSty = "solid";
        itemPad = 2;
        imgSrc = "Images/Tri.gif";
        imgSiz = 10;
        separator = 1;
        separatorCol = "#ABB0D4";
        isFrames = false;
        navFrLoc = "left";
        mainFrName = "content";
        keepHilite = true; 
        clickStart = false;
        clickKill = false;
        showLinkCursor = true;
}

function Browse() { 
	for (var i=0; i < arguments.length; i += 2) { 
		parent.frames[arguments[i]].location.href = arguments[i+1]; 
	} 
}


function MM_findObj(n, d) { //v4.0
  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);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_changeProp(objName,x,theProp,theValue) { //v3.0
  var obj = MM_findObj(objName);
  if (obj && (theProp.indexOf("style.")==-1 || obj.style)) eval("obj."+theProp+"='"+theValue+"'");
}

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
