var i = 0;
function Section(title, startpage, endpage)
  {
    this.title      = title;
    this.startpage  = startpage;
    this.endpage    = endpage;
  }
var sections  = new Array();
i = 0;
sections[i++] = new Section("List by page #",           1, 8);
sections[i++] = new Section("Current Items",            4, 8);
sections[i++] = new Section("New Items",                1, 3);
function IndexGroup(title, length)
  {
    this.title  = title;
    this.length = length;
  }
var indexGroups  = new Array();
function Index(title, pages)
  {
    this.title  = title;
    this.pages  = pages;
  }
var indexs  = new Array();
var maxGroups = 0;
i = 0;
indexs[maxGroups]       = new Array(); // #
indexs[maxGroups][i++]  = new Index("24K",[5,6]);
indexGroups[maxGroups++]  = new IndexGroup("#",i);
i = 0;
indexs[maxGroups]       = new Array(); // A
indexs[maxGroups][i++]  = new Index("Acapulco",[2,3,5,6,8]);
indexs[maxGroups][i++]  = new Index("Apollo",[2,3]);
indexs[maxGroups][i++]  = new Index("Armada",  [7]);
indexGroups[maxGroups++]  = new IndexGroup("A",i);
i = 0;
indexs[maxGroups]       = new Array(); // G
indexs[maxGroups][i++]  = new Index("Gloves",  [7,8]);
indexGroups[maxGroups++]  = new IndexGroup("G",i);
i = 0;
indexs[maxGroups]       = new Array(); // H
indexs[maxGroups][i++]  = new Index("Houston",  [2,3]);
indexGroups[maxGroups++]  = new IndexGroup("H",i);
i = 0;
indexs[maxGroups]       = new Array(); // J
indexs[maxGroups][i++]  = new Index("Jerseys",[3,6]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">24K</span>",[6]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">Acapulco</span>",[3,6]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">Apollo</span>",  [3]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">Houston</span>", [3]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">Logic</span>",[6]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">Mosaic</span>",[6]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">Platinum</span>",[6]);
indexs[maxGroups][i++]  = new Index("Jerseys <span class=\"mfg\">Robotek</span>",[6]);
indexGroups[maxGroups++]  = new IndexGroup("J",i);
i = 0;
indexs[maxGroups]       = new Array(); // L
indexs[maxGroups][i++]  = new Index("Logic",[5,6]);
indexGroups[maxGroups++]  = new IndexGroup("L",i);
i = 0;
indexs[maxGroups]       = new Array(); // M
indexs[maxGroups][i++]  = new Index("Mosaic",[5,6]);
indexGroups[maxGroups++]  = new IndexGroup("M",i);
i = 0;
indexs[maxGroups]       = new Array(); // P
indexs[maxGroups][i++]  = new Index("Pants",[2,5]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">24K</span>",[5]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">Acapulco</span>",[2,5]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">Apollo</span>",  [2]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">Houston</span>", [2]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">Logic</span>",[5]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">Mosaic</span>",[5]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">Platinum</span>",[5]);
indexs[maxGroups][i++]  = new Index("Pants <span class=\"mfg\">Robotek</span>",[5]);
indexs[maxGroups][i++]  = new Index("Platinum",[5,6]);
indexGroups[maxGroups++]  = new IndexGroup("P",i);
i = 0;
indexs[maxGroups]       = new Array(); // R
indexs[maxGroups][i++]  = new Index("Robotek",[5,6,8]);
indexGroups[maxGroups++]  = new IndexGroup("R",i);
/****** Bellow are the blank lines needed
i = 0;
indexs[maxGroups]       = new Array();
indexs[maxGroups][i++]  = new Index("",[]);
indexs[maxGroups][i++]  = new Index("<span class=\"mfg\"></span>",[]);
indexGroups[maxGroups++]  = new IndexGroup("",i);
*******************************************************************************/
