function fwLoadMenus() {
if (window.fw_menu_0) return;
  window.fw_menu_0 = new Menu("root",145,17,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#CCCC99","#333333","#990000");
fw_menu_0.addMenuItem("Mentoring","location='mentoring.htm'");
fw_menu_0.addMenuItem("Leadership","location='leadership.htm'");
fw_menu_0.addMenuItem("Teamwork","location='teamwork.htm'");
fw_menu_0.addMenuItem("Communication","location='communication.htm'");
fw_menu_0.addMenuItem("Work/Life Balance","location='balance.htm'");
fw_menu_0.addMenuItem("People Empowerment","location='empowerment.htm'");
fw_menu_0.addMenuItem("Peak Performance","location='peak.htm'");
fw_menu_0.hideOnMouseOut=true;
  window.fw_menu_1 = new Menu("root",325,17,"Verdana, Arial, Helvetica, sans-serif",10,"#ffffff","#CCCC99","#333333","#990000");
fw_menu_1.addMenuItem("Balancing Profits & People","location='art-bpp.htm'");
fw_menu_1.addMenuItem("The Marketing & Selling Marriage","location='art-tmsm.htm'");
fw_menu_1.addMenuItem("Role Modeling Vs. Mentoring","location='art-rmvm.htm'");
fw_menu_1.addMenuItem("Communicating To Connect","location='art-cto.htm'");
fw_menu_1.addMenuItem("Managing Stress By Making Time For Serenity","location='art-msbmtfs.htm'");
fw_menu_1.addMenuItem("Beyond Time Management To Personal Management","location='art-bymtpm.htm'");
fw_menu_1.addMenuItem("Changing Times, Unchanging Truths","location='art-ctut.htm'");
fw_menu_1.hideOnMouseOut=true; 
fw_menu_1.writeMenus();
} // fwLoadMenus()

 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS6 = (bName == "Netscape" && bVer >= 5);
 var NS4 = (bName == "Netscape" && bVer >= 4 && bVer < 5);
 var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
 
function imgPos(imgName){
 img = getImage(imgName);
 imgLeft = getImagePageLeft(img); // LEFT POSITION
 return imgLeft+7;
}
function getImage(name) {
  if (NS4 || NS6) {
    return findImage(name, document);
  }
  if (IE4 || NS6)
    return eval('document.all.' + name);
  return null;
}

function findImage(name, doc) {
  var i, img;
  for (i = 0; i < doc.images.length; i++)
    if (doc.images[i].name == name)
      return doc.images[i];
  for (i = 0; i < doc.layers.length; i++)
    if ((img = findImage(name, doc.layers[i].document)) != null) {
      img.container = doc.layers[i];
      return img;
    }
  return null;
}

function getImagePageLeft(img) {
  var x, obj;
  if (NS4 || NS6) {
    if (img.container != null)
      return img.container.pageX + img.x - 1;
    else
      return img.x - 1;
  }
  if (IE4) {
    x = 0;
    obj = img;
    while (obj.offsetParent != null) {
      x += obj.offsetLeft;
      obj = obj.offsetParent;
    }
    x += obj.offsetLeft;
    return x;
  }
  return -1;
}