    function onLoad() {
      window.onResize = onLoad;
      loadMenus();
     }

    function loadMenus() {

      window.termination = new Menu("Termination");
      termination.addMenuItem("For cause");
      termination.addMenuItem("Without cause");
      termination.addMenuItem("Severance");

      window.employmentrealtions = new Menu("Employment Relations");
      employmentrealtions.addMenuItem("Non-Competition Clauses","top.window.location='/noncompetition.shtml'");
      employmentrealtions.addMenuItem("Term - Length of deal");
      employmentrealtions.addMenuItem("Arbitration clauses","top.window.location='/arbitration.shtml'");
      employmentrealtions.addMenuItem(termination);

      window.peronalityrights = new Menu("Personality Rights");
      peronalityrights.addMenuItem("Use of Your Name, Voice, Etc","top.window.location='/useofname.shtml'");
      peronalityrights.addMenuItem("Ad-Lib (Endorsement) Spots");
      peronalityrights.addMenuItem("Appearance rights","top.window.location='/appearance.shtml'");
      peronalityrights.addMenuItem("Name of Your Show","top.window.location='/nameofshow.shtml'");
      peronalityrights.addMenuItem("Merchandising");

      window.voiceovers = new Menu("Voiceovers");
      voiceovers.addMenuItem("For Employer");
      voiceovers.addMenuItem("For Third Parties");

      window.rightstousework = new Menu("Rights to Use Your Work");
      rightstousework.addMenuItem("Ownership of Rights","top.window.location='/ownrights.shtml'");
      rightstousework.addMenuItem("Internet streaming","top.window.location='/internetstreaming.shtml'");
      rightstousework.addMenuItem("Airchecks - Demo tapes");
      rightstousework.addMenuItem(voiceovers);

      window.compensation = new Menu("Compensation");
      compensation.addMenuItem("Ratings bonuses");
      compensation.addMenuItem("Royalties for re-sale of personality");
      compensation.addMenuItem("Ad-Lib (Endorsement) Spots");
      compensation.addMenuItem("Signing bonus");
      compensation.addMenuItem("Standard employment benefits");
      compensation.addMenuItem("Promotion of your show");
  
      window.affect = new Menu();
      affect.addMenuItem(employmentrealtions);
      affect.addMenuItem(peronalityrights);
      affect.addMenuItem(rightstousework);
      affect.addMenuItem(compensation);

      writeMenus();

    }

