
  var xc=0;

  var cCCactus = xc++;
  var cOCactus = xc++;
  var cTree    = xc++;
  var cGarden  = xc++;
  var cBonsi   = xc++;
  var cMisc    = xc++;

  var cMax    = xc - 1;
  var cAll    = cMax + 1;

  var cNames = new Array();

  cNames[cCCactus] ='Christmas Cactus';  
  cNames[cOCactus] ='Orchid Cactus';
  cNames[cTree]    ='Trees';
  cNames[cGarden]  ='Garden Items';
  cNames[cBonsi]   ='Bonsi';
  cNames[cMisc]    ='Miscellaneous Items';

  cNames[cAll]     ='All';

  for (c=0;c <= cMax;c++) {
    if (cNames[c] == null) {
      alert ('cNames at ' + c)
    }
  }

  var url1 = "/richardscott/plants/";