YAHOO.util.Event.onContentReady("navMenu", function () {
  var oMenu = new YAHOO.widget.Menu("navMenu", { position: "static", hidedelay: 750, lazyload: true });
  var aSubmenuData = [
  {  },
  {  },
  { id: "cp71", itemdata: [
    { text: "The Zero Water Exchange System", url: "/index.php?cPath=71_81" },
    { text: "Power Filters", url: "/index.php?cPath=71_15" },
    { text: "Nitrogen Cycle Filters", url: "/index.php?cPath=71_82" },
    { text: "Sponge Filters", url: "/index.php?cPath=71_14" },
    { text: "Media", url: "/index.php?cPath=71_10" }
    ]
  },
  { id: "cp62", itemdata: [
    { text: "Flake", url: "/index.php?cPath=62_76",
      submenu: { id: "cp62_76", itemdata: [
      { text: "Ocean Nutrition", url: "/index.php?cPath=62_76_80" }
      ]}
    },
    { text: "Freeze Dried", url: "/index.php?cPath=62_78",
      submenu: { id: "cp62_78", itemdata: [
      { text: "Utopia's Blend", url: "/index.php?cPath=62_78_11" }
      ]}
    },
    { text: "Gel", url: "/index.php?cPath=62_63",
      submenu: { id: "cp62_63", itemdata: [
      { text: "Mazuri", url: "/index.php?cPath=62_63_64" },
      { text: "Medicated / Gel-Tek", url: "/index.php?cPath=62_63_65" }
      ]}
    },
    { text: "Medicated", url: "/index.php?cPath=62_19" },
    { text: "Pellet", url: "/index.php?cPath=62_77",
      submenu: { id: "cp62_77", itemdata: [
      { text: "Hai Feng", url: "/index.php?cPath=62_77_3" },
      { text: "Hikari Pellet", url: "/index.php?cPath=62_77_4" },
      { text: "Tung Hoi", url: "/index.php?cPath=62_77_17" }
      ]}
    }
    ]
  },
  {  },
  {  },
  {  },
  {  },
  {  },
  {  }
  ];

  oMenu.subscribe("beforeRender", function () {
    if (this.getRoot() == this) {
      this.getItem(2).cfg.setProperty("submenu", aSubmenuData[2]);
      this.getItem(3).cfg.setProperty("submenu", aSubmenuData[3]);
    }
  });

  oMenu.render();
});