<!--

NS4 = (document.layers);
IE4 = (document.all);
ver4 = (NS4 || IE4);   
isMac = (navigator.appVersion.indexOf("Mac") != -1);

if(navigator.userAgent.indexOf('SunOS') != -1 || navigator.userAgent.indexOf('IRIX') != -1 || navigator.userAgent.indexOf('AIX') != -1 || navigator.userAgent.indexOf('HP-UX') != -1 || navigator.userAgent.indexOf('Linux') != -1) {
  isUnix = 1;
} else {
  isUnix = 0;
}

isMenu = (NS4 || (IE4 && !isMac));

function popUp(){return};
function popDown(){return};

if (!ver4) event = null;

if (isMenu) {
        menuVersion = 3;
           
        menuWidth = 160; // keep it even!
        childOverlap = 5;
        childOffset = 5;
        perCentOver = null;
        secondsVisible = .5;

        fntCol = "#fafcd2";
		
		if(isMac || isUnix) {
		  fntSiz = "10";
		  overCol = "#fafcd2";
          overCol2 = "#fafcd2";
		  overFnt = "#000000";
		} else {
		  fntSiz = "8";
		  overCol = "#fafcd2";
          overCol2 = "#fafcd2";
		  overFnt = "#000000";
		}
        fntBold = false;
        fntItal = false;
        fntFam = "verdana, arial, helvetica, sans-serif";

        backCol = "#000000";
        backCol2 = "#000000";

        borWid = 1;
        borCol = "#000000";
        borSty = "solid";
        itemPad = 3;

        separator = 0;
        separatorCol = "#D9E0E4";
                   
        imgSrc = "null";
        imgSiz = 10;

        isFrames = false;      // <-- IMPORTANT for full window
        navFrLoc = "left";     // <-- display. see below

        keepHilite = true; 
        NSfontOver = true;
        clickStart = false;
        clickKill = false;
}
	//-->