		var thischild='';
		var object;

    function TreeItem(ID, parentID, label, filename, filenameencoded, parentRef, obj)
    {
      this.ID = ID;
      this.parentID = parentID;
      this.label = label;
      this.filename = filename;
      this.filenameencoded = filenameencoded;
      this.childs = new Array();
      this.parentRef = parentRef;
      this.obj = obj;

      			if (ID == -1) thischild = this;
      /** in case genjstree.php is called without treeitemID: */
      if (typeof(treeitemID) != 'undefined')
      {
  			if (-1 == -1 && ID == treeitemID) thischild = this;
      }
      			FlatTree[ID] = this;
    }
    
    var CatTree = Array();    
    var FlatTree = Array();    


    /** javascript part tree functions */
    
    function HasChilds(current)
    {
      return current.childs.length;
    }
    
    function HasSiblings(current)
    {
      if (current.parentRef.childs.length > 1) return true;
      else return false;
    }
    
    function GetLocationList(current)
    {
      var loclist = new Array();
      
      
      var i = 0;
      while (current.parentRef != null && current.parentRef.ID != -1 && i < 100)
      {
        loclist[i] = GetIndexInParent(current);
        current = current.parentRef;
        i++;
      }
      loclist = loclist.reverse();
      return loclist;
    }
    
    
    function GetIndexInParent(current)
    {
      /** get index in parent */
      if (current.parentRef != null && current.parentRef.ID != -1)
      {
        i = 0;
        while (i < current.parentRef.childs.length)
        {
          if (current.parentRef.childs[i].ID == current.ID) return i;
          i++;
        }
      }
    
      return -1;
    }
    
    /** Start_of_the_Tree - used for sitemap.php on the actual site. */
            CatTree[0] = new TreeItem(5857, 
                                                                              -1, 
                                                                              "Nederlands", 
                                                                              'Nederlands-5857.php', 
                                                                              'Nederlands-5857.php', 
                                                                              null,
                                                                              null);
              CatTree[0].childs[0] = new TreeItem(5873, 
                                                                              5857, 
                                                                              "Collection2007", 
                                                                              'Collection2007-5873.html', 
                                                                              'Collection2007-5873.html', 
                                                                              CatTree[0],
                                                                              null);
              CatTree[0].childs[0].childs[0] = new TreeItem(5874, 
                                                                              5873, 
                                                                              "Collectie overzicht", 
                                                                              'Collectieoverzicht-5874.php', 
                                                                              'Collectieoverzicht-5874.php', 
                                                                              CatTree[0].childs[0],
                                                                              null);
              CatTree[0].childs[0].childs[0].childs[0] = new TreeItem(5875, 
                                                                              5874, 
                                                                              "Mix en Match", 
                                                                              'MixenMatch-5875.php', 
                                                                              'MixenMatch-5875.php', 
                                                                              CatTree[0].childs[0].childs[0],
                                                                              null);
              CatTree[0].childs[0].childs[1] = new TreeItem(5877, 
                                                                              5873, 
                                                                              "Engineered skin&reg;", 
                                                                              'Engineeredskin_-5877.php', 
                                                                              'Engineeredskin_-5877.php', 
                                                                              CatTree[0].childs[0],
                                                                              null);
              CatTree[0].childs[0].childs[1].childs[0] = new TreeItem(6065, 
                                                                              5877, 
                                                                              "Protectie", 
                                                                              'Protectie-6065.php', 
                                                                              'Protectie-6065.php', 
                                                                              CatTree[0].childs[0].childs[1],
                                                                              null);
              CatTree[0].childs[0].childs[1].childs[1] = new TreeItem(6066, 
                                                                              5877, 
                                                                              "Waterdichtheid & Ademendheid", 
                                                                              'Waterdichtheid_Ademendheid-6066.php', 
                                                                              'Waterdichtheid_Ademendheid-6066.php', 
                                                                              CatTree[0].childs[0].childs[1],
                                                                              null);
              CatTree[0].childs[0].childs[1].childs[2] = new TreeItem(6067, 
                                                                              5877, 
                                                                              "Isolatie", 
                                                                              'Isolatie-6067.php', 
                                                                              'Isolatie-6067.php', 
                                                                              CatTree[0].childs[0].childs[1],
                                                                              null);
              CatTree[0].childs[0].childs[2] = new TreeItem(5963, 
                                                                              5873, 
                                                                              "Innovaties", 
                                                                              'Innovaties-5963.php', 
                                                                              'Innovaties-5963.php', 
                                                                              CatTree[0].childs[0],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[0] = new TreeItem(5964, 
                                                                              5963, 
                                                                              "1!Schoeller&reg; NanoSphere", 
                                                                              '1_Schoeller_NanoSphere-5964.php', 
                                                                              '1_Schoeller_NanoSphere-5964.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[1] = new TreeItem(5965, 
                                                                              5963, 
                                                                              "2!Flexi Snap", 
                                                                              '2_FlexiSnap-5965.php', 
                                                                              '2_FlexiSnap-5965.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[2] = new TreeItem(5967, 
                                                                              5963, 
                                                                              "3!Verwijderbare ventilatie panelen", 
                                                                              '3_Verwijderbareventilatiepanelen-5967.php', 
                                                                              '3_Verwijderbareventilatiepanelen-5967.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[3] = new TreeItem(5969, 
                                                                              5963, 
                                                                              "5!SuperFabric&reg;", 
                                                                              '5_SuperFabric_-5969.php', 
                                                                              '5_SuperFabric_-5969.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[4] = new TreeItem(5971, 
                                                                              5963, 
                                                                              "6!3-D gelamineerde stof", 
                                                                              '6_3-Dgelamineerdestof-5971.php', 
                                                                              '6_3-Dgelamineerdestof-5971.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[5] = new TreeItem(5968, 
                                                                              5963, 
                                                                              "Gelamineerde reflectie", 
                                                                              'Gelamineerdereflectie-5968.php', 
                                                                              'Gelamineerdereflectie-5968.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[6] = new TreeItem(5972, 
                                                                              5963, 
                                                                              "7!Gelamineerde mouwsluitingen", 
                                                                              '7_Gelamineerdemouwsluitingen-5972.php', 
                                                                              '7_Gelamineerdemouwsluitingen-5972.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[7] = new TreeItem(5973, 
                                                                              5963, 
                                                                              "Ventilatie zakken", 
                                                                              'Ventilatiezakken-5973.php', 
                                                                              'Ventilatiezakken-5973.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[8] = new TreeItem(5974, 
                                                                              5963, 
                                                                              "9!Laser etsen", 
                                                                              '9_Laseretsen-5974.php', 
                                                                              '9_Laseretsen-5974.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[9] = new TreeItem(5975, 
                                                                              5963, 
                                                                              "Laser snijden", 
                                                                              'Lasersnijden-5975.php', 
                                                                              'Lasersnijden-5975.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[10] = new TreeItem(5976, 
                                                                              5963, 
                                                                              "Thermisch lassen", 
                                                                              'Thermischlassen-5976.php', 
                                                                              'Thermischlassen-5976.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[11] = new TreeItem(5977, 
                                                                              5963, 
                                                                              "Sublimatie print", 
                                                                              'Sublimatieprint-5977.php', 
                                                                              'Sublimatieprint-5977.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[2].childs[12] = new TreeItem(5978, 
                                                                              5963, 
                                                                              "Ge&iuml;njecteerde logo&rsquo;s", 
                                                                              'Geinjecteerdelogo_rsquo_s-5978.php', 
                                                                              'Geinjecteerdelogo_rsquo_s-5978.php', 
                                                                              CatTree[0].childs[0].childs[2],
                                                                              null);
              CatTree[0].childs[0].childs[3] = new TreeItem(5878, 
                                                                              5873, 
                                                                              "Kledingadvies", 
                                                                              'Kledingadvies-5878.php', 
                                                                              'Kledingadvies-5878.php', 
                                                                              CatTree[0].childs[0],
                                                                              null);
              CatTree[0].childs[0].childs[4] = new TreeItem(5959, 
                                                                              5873, 
                                                                              "Wasvoorschriften", 
                                                                              'Wasvoorschriften-5959.php', 
                                                                              'Wasvoorschriften-5959.php', 
                                                                              CatTree[0].childs[0],
                                                                              null);
              CatTree[0].childs[0].childs[5] = new TreeItem(5960, 
                                                                              5873, 
                                                                              "Prijs aanvraag", 
                                                                              'Prijsaanvraag-5960.php', 
                                                                              'Prijsaanvraag-5960.php', 
                                                                              CatTree[0].childs[0],
                                                                              null);
              CatTree[0].childs[1] = new TreeItem(5918, 
                                                                              5857, 
                                                                              "Company", 
                                                                              'Company-5918.html', 
                                                                              'Company-5918.html', 
                                                                              CatTree[0],
                                                                              null);
              CatTree[0].childs[1].childs[0] = new TreeItem(5951, 
                                                                              5918, 
                                                                              "Introductie", 
                                                                              'Introductie-5951.php', 
                                                                              'Introductie-5951.php', 
                                                                              CatTree[0].childs[1],
                                                                              null);
              CatTree[0].childs[1].childs[1] = new TreeItem(5952, 
                                                                              5918, 
                                                                              "Contact", 
                                                                              'Contact-5952.php', 
                                                                              'Contact-5952.php', 
                                                                              CatTree[0].childs[1],
                                                                              null);
              CatTree[0].childs[2] = new TreeItem(5881, 
                                                                              5857, 
                                                                              "Newsletter", 
                                                                              'Newsletter-5881.php', 
                                                                              'Newsletter-5881.php', 
                                                                              CatTree[0],
                                                                              null);
              CatTree[0].childs[3] = new TreeItem(5858, 
                                                                              5857, 
                                                                              "REV&#39;IT! dealers", 
                                                                              'REVIT_dealers-5858.php', 
                                                                              'REVIT_dealers-5858.php', 
                                                                              CatTree[0],
                                                                              null);
              CatTree[0].childs[3].childs[0] = new TreeItem(5882, 
                                                                              5858, 
                                                                              "REV&#39;IT! dealer search", 
                                                                              'REVIT_dealersearch-5882.php', 
                                                                              'REVIT_dealersearch-5882.php', 
                                                                              CatTree[0].childs[3],
                                                                              null);
              CatTree[1] = new TreeItem(5859, 
                                                                              -1, 
                                                                              "English", 
                                                                              'English-5859.php', 
                                                                              'English-5859.php', 
                                                                              null,
                                                                              null);
              CatTree[1].childs[0] = new TreeItem(6747, 
                                                                              5859, 
                                                                              "Home", 
                                                                              'Home-6747.php', 
                                                                              'Home-6747.php', 
                                                                              CatTree[1],
                                                                              null);
              CatTree[1].childs[1] = new TreeItem(5886, 
                                                                              5859, 
                                                                              "Collection2007", 
                                                                              'Collection2007-5886.html', 
                                                                              'Collection2007-5886.html', 
                                                                              CatTree[1],
                                                                              null);
              CatTree[1].childs[1].childs[0] = new TreeItem(5891, 
                                                                              5886, 
                                                                              "Collection overview", 
                                                                              'Collectionoverview-5891.php', 
                                                                              'Collectionoverview-5891.php', 
                                                                              CatTree[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[0].childs[0] = new TreeItem(5899, 
                                                                              5891, 
                                                                              "Mix and Match", 
                                                                              'MixandMatch-5899.php', 
                                                                              'MixandMatch-5899.php', 
                                                                              CatTree[1].childs[1].childs[0],
                                                                              null);
              CatTree[1].childs[1].childs[1] = new TreeItem(5903, 
                                                                              5886, 
                                                                              "Engineered Skin&reg;", 
                                                                              'EngineeredSkin_-5903.php', 
                                                                              'EngineeredSkin_-5903.php', 
                                                                              CatTree[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[1].childs[0] = new TreeItem(6068, 
                                                                              5903, 
                                                                              "Protection", 
                                                                              'Protection-6068.php', 
                                                                              'Protection-6068.php', 
                                                                              CatTree[1].childs[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[1].childs[1] = new TreeItem(6069, 
                                                                              5903, 
                                                                              "Waterproofing & Breathability", 
                                                                              'Waterproofing_Breathability-6069.php', 
                                                                              'Waterproofing_Breathability-6069.php', 
                                                                              CatTree[1].childs[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[1].childs[2] = new TreeItem(6070, 
                                                                              5903, 
                                                                              "Insulation", 
                                                                              'Insulation-6070.php', 
                                                                              'Insulation-6070.php', 
                                                                              CatTree[1].childs[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[2] = new TreeItem(5979, 
                                                                              5886, 
                                                                              "Innovations", 
                                                                              'Innovations-5979.php', 
                                                                              'Innovations-5979.php', 
                                                                              CatTree[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[0] = new TreeItem(5980, 
                                                                              5979, 
                                                                              "1!Schoeller&reg; NanoSphere", 
                                                                              '1_Schoeller_NanoSphere-5980.php', 
                                                                              '1_Schoeller_NanoSphere-5980.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[1] = new TreeItem(5981, 
                                                                              5979, 
                                                                              "2!Flexi Snap", 
                                                                              '2_FlexiSnap-5981.php', 
                                                                              '2_FlexiSnap-5981.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[2] = new TreeItem(5983, 
                                                                              5979, 
                                                                              "3!Removable ventilation panels", 
                                                                              '3_Removableventilationpanels-5983.php', 
                                                                              '3_Removableventilationpanels-5983.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[3] = new TreeItem(5984, 
                                                                              5979, 
                                                                              "Laminated reflection", 
                                                                              'Laminatedreflection-5984.php', 
                                                                              'Laminatedreflection-5984.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[4] = new TreeItem(5985, 
                                                                              5979, 
                                                                              "5!SuperFabric&reg;", 
                                                                              '5_SuperFabric_-5985.php', 
                                                                              '5_SuperFabric_-5985.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[5] = new TreeItem(5987, 
                                                                              5979, 
                                                                              "6!3-D laminated fabrics", 
                                                                              '6_3-Dlaminatedfabrics-5987.php', 
                                                                              '6_3-Dlaminatedfabrics-5987.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[6] = new TreeItem(5988, 
                                                                              5979, 
                                                                              "7!Ultra thin laminated cuff straps", 
                                                                              '7_Ultrathinlaminatedcuffstraps-5988.php', 
                                                                              '7_Ultrathinlaminatedcuffstraps-5988.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[7] = new TreeItem(5989, 
                                                                              5979, 
                                                                              "Ventilation pockets", 
                                                                              'Ventilationpockets-5989.php', 
                                                                              'Ventilationpockets-5989.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[8] = new TreeItem(5990, 
                                                                              5979, 
                                                                              "9!Laser etching", 
                                                                              '9_Laseretching-5990.php', 
                                                                              '9_Laseretching-5990.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[9] = new TreeItem(5991, 
                                                                              5979, 
                                                                              "Laser cutting", 
                                                                              'Lasercutting-5991.php', 
                                                                              'Lasercutting-5991.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[10] = new TreeItem(5992, 
                                                                              5979, 
                                                                              "Thermal welding", 
                                                                              'Thermalwelding-5992.php', 
                                                                              'Thermalwelding-5992.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[11] = new TreeItem(5993, 
                                                                              5979, 
                                                                              "Sublimation printing", 
                                                                              'Sublimationprinting-5993.php', 
                                                                              'Sublimationprinting-5993.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[2].childs[12] = new TreeItem(5994, 
                                                                              5979, 
                                                                              "Injected logos", 
                                                                              'Injectedlogos-5994.php', 
                                                                              'Injectedlogos-5994.php', 
                                                                              CatTree[1].childs[1].childs[2],
                                                                              null);
              CatTree[1].childs[1].childs[3] = new TreeItem(5904, 
                                                                              5886, 
                                                                              "How to dress", 
                                                                              'Howtodress-5904.php', 
                                                                              'Howtodress-5904.php', 
                                                                              CatTree[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[4] = new TreeItem(5961, 
                                                                              5886, 
                                                                              "Wash and Care", 
                                                                              'WashandCare-5961.php', 
                                                                              'WashandCare-5961.php', 
                                                                              CatTree[1].childs[1],
                                                                              null);
              CatTree[1].childs[1].childs[5] = new TreeItem(5962, 
                                                                              5886, 
                                                                              "Price request", 
                                                                              'Pricerequest-5962.php', 
                                                                              'Pricerequest-5962.php', 
                                                                              CatTree[1].childs[1],
                                                                              null);
              CatTree[1].childs[2] = new TreeItem(5922, 
                                                                              5859, 
                                                                              "Company", 
                                                                              'Company-5922.html', 
                                                                              'Company-5922.html', 
                                                                              CatTree[1],
                                                                              null);
              CatTree[1].childs[2].childs[0] = new TreeItem(5900, 
                                                                              5922, 
                                                                              "Company", 
                                                                              'Company-5900.php', 
                                                                              'Company-5900.php', 
                                                                              CatTree[1].childs[2],
                                                                              null);
              CatTree[1].childs[2].childs[1] = new TreeItem(5901, 
                                                                              5922, 
                                                                              "Contact us", 
                                                                              'Contactus-5901.php', 
                                                                              'Contactus-5901.php', 
                                                                              CatTree[1].childs[2],
                                                                              null);
              CatTree[1].childs[3] = new TreeItem(5894, 
                                                                              5859, 
                                                                              "Newsletter", 
                                                                              'Newsletter-5894.php', 
                                                                              'Newsletter-5894.php', 
                                                                              CatTree[1],
                                                                              null);
              CatTree[1].childs[4] = new TreeItem(5885, 
                                                                              5859, 
                                                                              "REV&#39;IT! dealers", 
                                                                              'REVIT_dealers-5885.php', 
                                                                              'REVIT_dealers-5885.php', 
                                                                              CatTree[1],
                                                                              null);
              CatTree[1].childs[4].childs[0] = new TreeItem(5902, 
                                                                              5885, 
                                                                              "REV&#39;IT! dealer search", 
                                                                              'REVIT_dealersearch-5902.php', 
                                                                              'REVIT_dealersearch-5902.php', 
                                                                              CatTree[1].childs[4],
                                                                              null);
              CatTree[2] = new TreeItem(5860, 
                                                                              -1, 
                                                                              "Deutsch", 
                                                                              'Deutsch-5860.php', 
                                                                              'Deutsch-5860.php', 
                                                                              null,
                                                                              null);
              CatTree[2].childs[0] = new TreeItem(6748, 
                                                                              5860, 
                                                                              "Home", 
                                                                              'Home-6748.php', 
                                                                              'Home-6748.php', 
                                                                              CatTree[2],
                                                                              null);
              CatTree[2].childs[1] = new TreeItem(5889, 
                                                                              5860, 
                                                                              "Kollektion 2007", 
                                                                              'Kollektion2007-5889.html', 
                                                                              'Kollektion2007-5889.html', 
                                                                              CatTree[2],
                                                                              null);
              CatTree[2].childs[1].childs[0] = new TreeItem(5892, 
                                                                              5889, 
                                                                              "Kollektion Ubersicht", 
                                                                              'KollektionUbersicht-5892.php', 
                                                                              'KollektionUbersicht-5892.php', 
                                                                              CatTree[2].childs[1],
                                                                              null);
              CatTree[2].childs[1].childs[0].childs[0] = new TreeItem(5908, 
                                                                              5892, 
                                                                              "Mix und Match", 
                                                                              'MixundMatch-5908.php', 
                                                                              'MixundMatch-5908.php', 
                                                                              CatTree[2].childs[1].childs[0],
                                                                              null);
              CatTree[2].childs[1].childs[1] = new TreeItem(5907, 
                                                                              5889, 
                                                                              "Engineered skin&reg;", 
                                                                              'Engineeredskin_-5907.php', 
                                                                              'Engineeredskin_-5907.php', 
                                                                              CatTree[2].childs[1],
                                                                              null);
              CatTree[2].childs[1].childs[1].childs[0] = new TreeItem(6071, 
                                                                              5907, 
                                                                              "Protektoren", 
                                                                              'Protektoren-6071.php', 
                                                                              'Protektoren-6071.php', 
                                                                              CatTree[2].childs[1].childs[1],
                                                                              null);
              CatTree[2].childs[1].childs[1].childs[1] = new TreeItem(6072, 
                                                                              5907, 
                                                                              "Wasserdichtheit und Atmungsaktivit&auml;t", 
                                                                              'WasserdichtheitundAtmungsaktivitat-6072.php', 
                                                                              'WasserdichtheitundAtmungsaktivitat-6072.php', 
                                                                              CatTree[2].childs[1].childs[1],
                                                                              null);
              CatTree[2].childs[1].childs[1].childs[2] = new TreeItem(7522, 
                                                                              5907, 
                                                                              "Isolierung", 
                                                                              'Isolierung-7522.php', 
                                                                              'Isolierung-7522.php', 
                                                                              CatTree[2].childs[1].childs[1],
                                                                              null);
              CatTree[2].childs[1].childs[2] = new TreeItem(5995, 
                                                                              5889, 
                                                                              "Innovation", 
                                                                              'Innovation-5995.php', 
                                                                              'Innovation-5995.php', 
                                                                              CatTree[2].childs[1],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[0] = new TreeItem(5996, 
                                                                              5995, 
                                                                              "1!Schoeller&reg; NanoSphere", 
                                                                              '1_Schoeller_NanoSphere-5996.php', 
                                                                              '1_Schoeller_NanoSphere-5996.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[1] = new TreeItem(5997, 
                                                                              5995, 
                                                                              "2!Flexi Snap", 
                                                                              '2_FlexiSnap-5997.php', 
                                                                              '2_FlexiSnap-5997.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[2] = new TreeItem(6002, 
                                                                              5995, 
                                                                              "3!Abnehmbare Panels f&uuml;r Atmungsaktivit&auml;t	", 
                                                                              '3_AbnehmbarePanelsfurAtmungsaktivitat_-6002.php', 
                                                                              '3_AbnehmbarePanelsfurAtmungsaktivitat_-6002.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[3] = new TreeItem(6003, 
                                                                              5995, 
                                                                              "Laminierte Reflektoren", 
                                                                              'LaminierteReflektoren-6003.php', 
                                                                              'LaminierteReflektoren-6003.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[4] = new TreeItem(6004, 
                                                                              5995, 
                                                                              "5!SuperFabric&reg;", 
                                                                              '5_SuperFabric_-6004.php', 
                                                                              '5_SuperFabric_-6004.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[5] = new TreeItem(6005, 
                                                                              5995, 
                                                                              "6!3-D laminierter Stoff", 
                                                                              '6_3-DlaminierterStoff-6005.php', 
                                                                              '6_3-DlaminierterStoff-6005.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[6] = new TreeItem(6006, 
                                                                              5995, 
                                                                              "7!Laminierte &Auml;rmel-Verschl&uuml;sse", 
                                                                              '7_LaminierteArmel-Verschlusse-6006.php', 
                                                                              '7_LaminierteArmel-Verschlusse-6006.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[7] = new TreeItem(6007, 
                                                                              5995, 
                                                                              "Atmungsaktive Taschen", 
                                                                              'AtmungsaktiveTaschen-6007.php', 
                                                                              'AtmungsaktiveTaschen-6007.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[8] = new TreeItem(6008, 
                                                                              5995, 
                                                                              "9!Laser-&Auml;tzung	", 
                                                                              '9_Laser-Atzung_-6008.php', 
                                                                              '9_Laser-Atzung_-6008.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[9] = new TreeItem(6009, 
                                                                              5995, 
                                                                              "Laserschnitt", 
                                                                              'Laserschnitt-6009.php', 
                                                                              'Laserschnitt-6009.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[10] = new TreeItem(6010, 
                                                                              5995, 
                                                                              "Thermisches Schwei&szlig;en", 
                                                                              'ThermischesSchweisen-6010.php', 
                                                                              'ThermischesSchweisen-6010.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[11] = new TreeItem(6011, 
                                                                              5995, 
                                                                              "Sublimationsdruck", 
                                                                              'Sublimationsdruck-6011.php', 
                                                                              'Sublimationsdruck-6011.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[2].childs[12] = new TreeItem(6012, 
                                                                              5995, 
                                                                              "Injizierte Logos	", 
                                                                              'InjizierteLogos_-6012.php', 
                                                                              'InjizierteLogos_-6012.php', 
                                                                              CatTree[2].childs[1].childs[2],
                                                                              null);
              CatTree[2].childs[1].childs[3] = new TreeItem(5910, 
                                                                              5889, 
                                                                              "das Lagensystem", 
                                                                              'dasLagensystem-5910.php', 
                                                                              'dasLagensystem-5910.php', 
                                                                              CatTree[2].childs[1],
                                                                              null);
              CatTree[2].childs[1].childs[4] = new TreeItem(6045, 
                                                                              5889, 
                                                                              "Preisliste", 
                                                                              'Preisliste-6045.php', 
                                                                              'Preisliste-6045.php', 
                                                                              CatTree[2].childs[1],
                                                                              null);
              CatTree[2].childs[2] = new TreeItem(5928, 
                                                                              5860, 
                                                                              "Company", 
                                                                              'Company-5928.html', 
                                                                              'Company-5928.html', 
                                                                              CatTree[2],
                                                                              null);
              CatTree[2].childs[2].childs[0] = new TreeItem(5911, 
                                                                              5928, 
                                                                              "Betrieb", 
                                                                              'Betrieb-5911.php', 
                                                                              'Betrieb-5911.php', 
                                                                              CatTree[2].childs[2],
                                                                              null);
              CatTree[2].childs[2].childs[1] = new TreeItem(5912, 
                                                                              5928, 
                                                                              "Kontakt", 
                                                                              'Kontakt-5912.php', 
                                                                              'Kontakt-5912.php', 
                                                                              CatTree[2].childs[2],
                                                                              null);
              CatTree[2].childs[3] = new TreeItem(5895, 
                                                                              5860, 
                                                                              "Newsletter", 
                                                                              'Newsletter-5895.php', 
                                                                              'Newsletter-5895.php', 
                                                                              CatTree[2],
                                                                              null);
              CatTree[2].childs[4] = new TreeItem(5887, 
                                                                              5860, 
                                                                              "REV&#39;IT! dealers", 
                                                                              'REVIT_dealers-5887.php', 
                                                                              'REVIT_dealers-5887.php', 
                                                                              CatTree[2],
                                                                              null);
              CatTree[2].childs[4].childs[0] = new TreeItem(5913, 
                                                                              5887, 
                                                                              "REV&#39;IT! dealer search", 
                                                                              'REVIT_dealersearch-5913.php', 
                                                                              'REVIT_dealersearch-5913.php', 
                                                                              CatTree[2].childs[4],
                                                                              null);
              CatTree[3] = new TreeItem(5861, 
                                                                              -1, 
                                                                              "Italiano", 
                                                                              'Italiano-5861.php', 
                                                                              'Italiano-5861.php', 
                                                                              null,
                                                                              null);
              CatTree[3].childs[0] = new TreeItem(6749, 
                                                                              5861, 
                                                                              "Home", 
                                                                              'Home-6749.php', 
                                                                              'Home-6749.php', 
                                                                              CatTree[3],
                                                                              null);
              CatTree[3].childs[1] = new TreeItem(5890, 
                                                                              5861, 
                                                                              "Collection2007", 
                                                                              'Collection2007-5890.html', 
                                                                              'Collection2007-5890.html', 
                                                                              CatTree[3],
                                                                              null);
              CatTree[3].childs[1].childs[0] = new TreeItem(5893, 
                                                                              5890, 
                                                                              "Collezione 2009", 
                                                                              'Collezione2009-5893.php', 
                                                                              'Collezione2009-5893.php', 
                                                                              CatTree[3].childs[1],
                                                                              null);
              CatTree[3].childs[1].childs[0].childs[0] = new TreeItem(5898, 
                                                                              5893, 
                                                                              "Mix and Match", 
                                                                              'MixandMatch-5898.php', 
                                                                              'MixandMatch-5898.php', 
                                                                              CatTree[3].childs[1].childs[0],
                                                                              null);
              CatTree[3].childs[1].childs[1] = new TreeItem(5905, 
                                                                              5890, 
                                                                              "Engineered skin&reg;", 
                                                                              'Engineeredskin_-5905.php', 
                                                                              'Engineeredskin_-5905.php', 
                                                                              CatTree[3].childs[1],
                                                                              null);
              CatTree[3].childs[1].childs[1].childs[0] = new TreeItem(6074, 
                                                                              5905, 
                                                                              "Protezione", 
                                                                              'Protezione-6074.php', 
                                                                              'Protezione-6074.php', 
                                                                              CatTree[3].childs[1].childs[1],
                                                                              null);
              CatTree[3].childs[1].childs[1].childs[1] = new TreeItem(6075, 
                                                                              5905, 
                                                                              "Impermeabilit&agrave; e traspirabilit&agrave;", 
                                                                              'Impermeabilitaetraspirabilita-6075.php', 
                                                                              'Impermeabilitaetraspirabilita-6075.php', 
                                                                              CatTree[3].childs[1].childs[1],
                                                                              null);
              CatTree[3].childs[1].childs[1].childs[2] = new TreeItem(7523, 
                                                                              5905, 
                                                                              "Isolamento-termico", 
                                                                              'Isolamento-termico-7523.php', 
                                                                              'Isolamento-termico-7523.php', 
                                                                              CatTree[3].childs[1].childs[1],
                                                                              null);
              CatTree[3].childs[1].childs[2] = new TreeItem(5998, 
                                                                              5890, 
                                                                              "Innovazione", 
                                                                              'Innovazione-5998.php', 
                                                                              'Innovazione-5998.php', 
                                                                              CatTree[3].childs[1],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[0] = new TreeItem(5999, 
                                                                              5998, 
                                                                              "1!Schoeller&reg; NanoSphere", 
                                                                              '1_Schoeller_NanoSphere-5999.php', 
                                                                              '1_Schoeller_NanoSphere-5999.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[1] = new TreeItem(6000, 
                                                                              5998, 
                                                                              "2!Flexi Snap", 
                                                                              '2_FlexiSnap-6000.php', 
                                                                              '2_FlexiSnap-6000.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[2] = new TreeItem(6017, 
                                                                              5998, 
                                                                              "3!Pannelli di ventilazione rimovibili", 
                                                                              '3_Pannellidiventilazionerimovibili-6017.php', 
                                                                              '3_Pannellidiventilazionerimovibili-6017.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[3] = new TreeItem(6018, 
                                                                              5998, 
                                                                              "Riflessione laminata", 
                                                                              'Riflessionelaminata-6018.php', 
                                                                              'Riflessionelaminata-6018.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[4] = new TreeItem(6020, 
                                                                              5998, 
                                                                              "5!SuperFabric&reg;	", 
                                                                              '5_SuperFabric__-6020.php', 
                                                                              '5_SuperFabric__-6020.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[5] = new TreeItem(6021, 
                                                                              5998, 
                                                                              "6!Laminazione Tessuto 3-dimensionale	", 
                                                                              '6_LaminazioneTessuto3-dimensionale_-6021.php', 
                                                                              '6_LaminazioneTessuto3-dimensionale_-6021.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[6] = new TreeItem(6022, 
                                                                              5998, 
                                                                              "7!Chiusure laminate per le maniche", 
                                                                              '7_Chiusurelaminateperlemaniche-6022.php', 
                                                                              '7_Chiusurelaminateperlemaniche-6022.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[7] = new TreeItem(6023, 
                                                                              5998, 
                                                                              "Tasche ventilate	", 
                                                                              'Tascheventilate_-6023.php', 
                                                                              'Tascheventilate_-6023.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[8] = new TreeItem(6024, 
                                                                              5998, 
                                                                              "9!Incisione laser	", 
                                                                              '9_Incisionelaser_-6024.php', 
                                                                              '9_Incisionelaser_-6024.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[9] = new TreeItem(6025, 
                                                                              5998, 
                                                                              "Taglio laser", 
                                                                              'Tagliolaser-6025.php', 
                                                                              'Tagliolaser-6025.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[10] = new TreeItem(6026, 
                                                                              5998, 
                                                                              "Saldatura termica", 
                                                                              'Saldaturatermica-6026.php', 
                                                                              'Saldaturatermica-6026.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[11] = new TreeItem(6027, 
                                                                              5998, 
                                                                              "Stampa a sublimazione	", 
                                                                              'Stampaasublimazione_-6027.php', 
                                                                              'Stampaasublimazione_-6027.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[2].childs[12] = new TreeItem(6028, 
                                                                              5998, 
                                                                              "Loghi a iniezione", 
                                                                              'Loghiainiezione-6028.php', 
                                                                              'Loghiainiezione-6028.php', 
                                                                              CatTree[3].childs[1].childs[2],
                                                                              null);
              CatTree[3].childs[1].childs[3] = new TreeItem(5906, 
                                                                              5890, 
                                                                              "Come vestirsi", 
                                                                              'Comevestirsi-5906.php', 
                                                                              'Comevestirsi-5906.php', 
                                                                              CatTree[3].childs[1],
                                                                              null);
              CatTree[3].childs[1].childs[4] = new TreeItem(6046, 
                                                                              5890, 
                                                                              "Listino prezzi", 
                                                                              'Listinoprezzi-6046.php', 
                                                                              'Listinoprezzi-6046.php', 
                                                                              CatTree[3].childs[1],
                                                                              null);
              CatTree[3].childs[2] = new TreeItem(5931, 
                                                                              5861, 
                                                                              "Company", 
                                                                              'Company-5931.html', 
                                                                              'Company-5931.html', 
                                                                              CatTree[3],
                                                                              null);
              CatTree[3].childs[2].childs[0] = new TreeItem(5914, 
                                                                              5931, 
                                                                              "Chi siamo", 
                                                                              'Chisiamo-5914.php', 
                                                                              'Chisiamo-5914.php', 
                                                                              CatTree[3].childs[2],
                                                                              null);
              CatTree[3].childs[2].childs[1] = new TreeItem(5915, 
                                                                              5931, 
                                                                              "Contattaci", 
                                                                              'Contattaci-5915.php', 
                                                                              'Contattaci-5915.php', 
                                                                              CatTree[3].childs[2],
                                                                              null);
              CatTree[3].childs[3] = new TreeItem(5896, 
                                                                              5861, 
                                                                              "Newsletter", 
                                                                              'Newsletter-5896.php', 
                                                                              'Newsletter-5896.php', 
                                                                              CatTree[3],
                                                                              null);
              CatTree[3].childs[4] = new TreeItem(5888, 
                                                                              5861, 
                                                                              "REV&#39;IT dealers", 
                                                                              'REVITdealers-5888.php', 
                                                                              'REVITdealers-5888.php', 
                                                                              CatTree[3],
                                                                              null);
              CatTree[3].childs[4].childs[0] = new TreeItem(5916, 
                                                                              5888, 
                                                                              "REV&#39;IT! dealer search", 
                                                                              'REVIT_dealersearch-5916.php', 
                                                                              'REVIT_dealersearch-5916.php', 
                                                                              CatTree[3].childs[4],
                                                                              null);
              CatTree[4] = new TreeItem(6924, 
                                                                              -1, 
                                                                              "USA", 
                                                                              'USA-6924.php', 
                                                                              'USA-6924.php', 
                                                                              null,
                                                                              null);
              CatTree[4].childs[0] = new TreeItem(6925, 
                                                                              6924, 
                                                                              "Home", 
                                                                              'Home-6925.php', 
                                                                              'Home-6925.php', 
                                                                              CatTree[4],
                                                                              null);
              CatTree[4].childs[1] = new TreeItem(6926, 
                                                                              6924, 
                                                                              "Collection2007", 
                                                                              'Collection2007-6926.html', 
                                                                              'Collection2007-6926.html', 
                                                                              CatTree[4],
                                                                              null);
              CatTree[4].childs[1].childs[0] = new TreeItem(6927, 
                                                                              6926, 
                                                                              "Collection overview", 
                                                                              'Collectionoverview-6927.php', 
                                                                              'Collectionoverview-6927.php', 
                                                                              CatTree[4].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[0].childs[0] = new TreeItem(6928, 
                                                                              6927, 
                                                                              "Mix and Match", 
                                                                              'MixandMatch-6928.php', 
                                                                              'MixandMatch-6928.php', 
                                                                              CatTree[4].childs[1].childs[0],
                                                                              null);
              CatTree[4].childs[1].childs[1] = new TreeItem(6929, 
                                                                              6926, 
                                                                              "Engineered Skin&reg;", 
                                                                              'EngineeredSkin_-6929.php', 
                                                                              'EngineeredSkin_-6929.php', 
                                                                              CatTree[4].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[1].childs[0] = new TreeItem(6930, 
                                                                              6929, 
                                                                              "Protection", 
                                                                              'Protection-6930.php', 
                                                                              'Protection-6930.php', 
                                                                              CatTree[4].childs[1].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[1].childs[1] = new TreeItem(6931, 
                                                                              6929, 
                                                                              "Waterproofing & Breathability", 
                                                                              'Waterproofing_Breathability-6931.php', 
                                                                              'Waterproofing_Breathability-6931.php', 
                                                                              CatTree[4].childs[1].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[1].childs[2] = new TreeItem(6932, 
                                                                              6929, 
                                                                              "Insulation", 
                                                                              'Insulation-6932.php', 
                                                                              'Insulation-6932.php', 
                                                                              CatTree[4].childs[1].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[2] = new TreeItem(6933, 
                                                                              6926, 
                                                                              "Innovations", 
                                                                              'Innovations-6933.php', 
                                                                              'Innovations-6933.php', 
                                                                              CatTree[4].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[0] = new TreeItem(6934, 
                                                                              6933, 
                                                                              "1!Schoeller&reg; NanoSphere", 
                                                                              '1_Schoeller_NanoSphere-6934.php', 
                                                                              '1_Schoeller_NanoSphere-6934.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[1] = new TreeItem(6935, 
                                                                              6933, 
                                                                              "2!Flexi Snap", 
                                                                              '2_FlexiSnap-6935.php', 
                                                                              '2_FlexiSnap-6935.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[2] = new TreeItem(6936, 
                                                                              6933, 
                                                                              "3!Removable ventilation panels", 
                                                                              '3_Removableventilationpanels-6936.php', 
                                                                              '3_Removableventilationpanels-6936.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[3] = new TreeItem(6937, 
                                                                              6933, 
                                                                              "Laminated reflection", 
                                                                              'Laminatedreflection-6937.php', 
                                                                              'Laminatedreflection-6937.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[4] = new TreeItem(6938, 
                                                                              6933, 
                                                                              "5!SuperFabric&reg;", 
                                                                              '5_SuperFabric_-6938.php', 
                                                                              '5_SuperFabric_-6938.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[5] = new TreeItem(6939, 
                                                                              6933, 
                                                                              "6!3-D laminated fabrics", 
                                                                              '6_3-Dlaminatedfabrics-6939.php', 
                                                                              '6_3-Dlaminatedfabrics-6939.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[6] = new TreeItem(6940, 
                                                                              6933, 
                                                                              "7!Ultra thin laminated cuff straps", 
                                                                              '7_Ultrathinlaminatedcuffstraps-6940.php', 
                                                                              '7_Ultrathinlaminatedcuffstraps-6940.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[7] = new TreeItem(6941, 
                                                                              6933, 
                                                                              "Ventilation pockets", 
                                                                              'Ventilationpockets-6941.php', 
                                                                              'Ventilationpockets-6941.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[8] = new TreeItem(6942, 
                                                                              6933, 
                                                                              "9!Laser etching", 
                                                                              '9_Laseretching-6942.php', 
                                                                              '9_Laseretching-6942.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[9] = new TreeItem(6943, 
                                                                              6933, 
                                                                              "Laser cutting", 
                                                                              'Lasercutting-6943.php', 
                                                                              'Lasercutting-6943.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[10] = new TreeItem(6944, 
                                                                              6933, 
                                                                              "Thermal welding", 
                                                                              'Thermalwelding-6944.php', 
                                                                              'Thermalwelding-6944.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[11] = new TreeItem(6945, 
                                                                              6933, 
                                                                              "Sublimation printing", 
                                                                              'Sublimationprinting-6945.php', 
                                                                              'Sublimationprinting-6945.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[2].childs[12] = new TreeItem(6946, 
                                                                              6933, 
                                                                              "Injected logos", 
                                                                              'Injectedlogos-6946.php', 
                                                                              'Injectedlogos-6946.php', 
                                                                              CatTree[4].childs[1].childs[2],
                                                                              null);
              CatTree[4].childs[1].childs[3] = new TreeItem(6948, 
                                                                              6926, 
                                                                              "How to dress", 
                                                                              'Howtodress-6948.php', 
                                                                              'Howtodress-6948.php', 
                                                                              CatTree[4].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[4] = new TreeItem(6949, 
                                                                              6926, 
                                                                              "Wash and Care", 
                                                                              'WashandCare-6949.php', 
                                                                              'WashandCare-6949.php', 
                                                                              CatTree[4].childs[1],
                                                                              null);
              CatTree[4].childs[1].childs[5] = new TreeItem(6950, 
                                                                              6926, 
                                                                              "Price request", 
                                                                              'Pricerequest-6950.php', 
                                                                              'Pricerequest-6950.php', 
                                                                              CatTree[4].childs[1],
                                                                              null);
              CatTree[4].childs[2] = new TreeItem(6951, 
                                                                              6924, 
                                                                              "Company", 
                                                                              'Company-6951.html', 
                                                                              'Company-6951.html', 
                                                                              CatTree[4],
                                                                              null);
              CatTree[4].childs[2].childs[0] = new TreeItem(6952, 
                                                                              6951, 
                                                                              "Company", 
                                                                              'Company-6952.php', 
                                                                              'Company-6952.php', 
                                                                              CatTree[4].childs[2],
                                                                              null);
              CatTree[4].childs[2].childs[1] = new TreeItem(6953, 
                                                                              6951, 
                                                                              "Contact us", 
                                                                              'Contactus-6953.php', 
                                                                              'Contactus-6953.php', 
                                                                              CatTree[4].childs[2],
                                                                              null);
              CatTree[4].childs[3] = new TreeItem(6954, 
                                                                              6924, 
                                                                              "Newsletter", 
                                                                              'Newsletter-6954.php', 
                                                                              'Newsletter-6954.php', 
                                                                              CatTree[4],
                                                                              null);
              CatTree[4].childs[4] = new TreeItem(6955, 
                                                                              6924, 
                                                                              "REV&#39;IT! dealers", 
                                                                              'REVIT_dealers-6955.php', 
                                                                              'REVIT_dealers-6955.php', 
                                                                              CatTree[4],
                                                                              null);
              CatTree[4].childs[4].childs[0] = new TreeItem(6956, 
                                                                              6955, 
                                                                              "REV&#39;IT! dealer search", 
                                                                              'REVIT_dealersearch-6956.php', 
                                                                              'REVIT_dealersearch-6956.php', 
                                                                              CatTree[4].childs[4],
                                                                              null);
              CatTree[5] = new TreeItem(5876, 
                                                                              -1, 
                                                                              "Product popup", 
                                                                              'Productpopup-5876.php', 
                                                                              'Productpopup-5876.php', 
                                                                              null,
                                                                              null);
              CatTree[6] = new TreeItem(5862, 
                                                                              -1, 
                                                                              "Taalkeuze", 
                                                                              'Taalkeuze-5862.php', 
                                                                              'Taalkeuze-5862.php', 
                                                                              null,
                                                                              null);
              CatTree[7] = new TreeItem(5897, 
                                                                              -1, 
                                                                              "Revzone", 
                                                                              'Revzone-5897.php', 
                                                                              'Revzone-5897.php', 
                                                                              null,
                                                                              null);
              CatTree[8] = new TreeItem(6044, 
                                                                              -1, 
                                                                              "temp -dealerzone", 
                                                                              'temp-dealerzone-6044.php', 
                                                                              'temp-dealerzone-6044.php', 
                                                                              null,
                                                                              null);
              CatTree[9] = new TreeItem(6080, 
                                                                              -1, 
                                                                              "Careers", 
                                                                              'Careers-6080.php', 
                                                                              'Careers-6080.php', 
                                                                              null,
                                                                              null);
              CatTree[9].childs[0] = new TreeItem(6581, 
                                                                              6080, 
                                                                              "REV&#39;IT Europe", 
                                                                              'REVITEurope-6581.php', 
                                                                              'REVITEurope-6581.php', 
                                                                              CatTree[9],
                                                                              null);
              CatTree[9].childs[0].childs[0] = new TreeItem(7574, 
                                                                              6581, 
                                                                              "Vacature: Sales Office Employee", 
                                                                              'Vacature_SalesOfficeEmployee-7574.php', 
                                                                              'Vacature_SalesOfficeEmployee-7574.php', 
                                                                              CatTree[9].childs[0],
                                                                              null);
              CatTree[9].childs[1] = new TreeItem(6582, 
                                                                              6080, 
                                                                              "REV&#39;IT USA", 
                                                                              'REVITUSA-6582.php', 
                                                                              'REVITUSA-6582.php', 
                                                                              CatTree[9],
                                                                              null);
              CatTree[9].childs[1].childs[0] = new TreeItem(6088, 
                                                                              6582, 
                                                                              "Independent Sales Rep", 
                                                                              'IndependentSalesRep-6088.php', 
                                                                              'IndependentSalesRep-6088.php', 
                                                                              CatTree[9].childs[1],
                                                                              null);
              CatTree[10] = new TreeItem(6077, 
                                                                              -1, 
                                                                              "Onzichtbaar", 
                                                                              'Onzichtbaar-6077.php', 
                                                                              'Onzichtbaar-6077.php', 
                                                                              null,
                                                                              null);
              CatTree[10].childs[0] = new TreeItem(6947, 
                                                                              6077, 
                                                                              "Mix and Match (US)", 
                                                                              'MixandMatchUS-6947.php', 
                                                                              'MixandMatchUS-6947.php', 
                                                                              CatTree[10],
                                                                              null);
              CatTree[10].childs[1] = new TreeItem(5935, 
                                                                              6077, 
                                                                              "Mix e Match (IT)", 
                                                                              'MixeMatchIT-5935.php', 
                                                                              'MixeMatchIT-5935.php', 
                                                                              CatTree[10],
                                                                              null);
              CatTree[10].childs[1].childs[0] = new TreeItem(6013, 
                                                                              5935, 
                                                                              "Sport", 
                                                                              'Sport-6013.php', 
                                                                              'Sport-6013.php', 
                                                                              CatTree[10].childs[1],
                                                                              null);
              CatTree[10].childs[1].childs[1] = new TreeItem(6014, 
                                                                              5935, 
                                                                              "Avventura", 
                                                                              'Avventura-6014.php', 
                                                                              'Avventura-6014.php', 
                                                                              CatTree[10].childs[1],
                                                                              null);
              CatTree[10].childs[1].childs[2] = new TreeItem(6015, 
                                                                              5935, 
                                                                              "Ventilazione Estiva", 
                                                                              'VentilazioneEstiva-6015.php', 
                                                                              'VentilazioneEstiva-6015.php', 
                                                                              CatTree[10].childs[1],
                                                                              null);
              CatTree[10].childs[1].childs[3] = new TreeItem(6016, 
                                                                              5935, 
                                                                              "Donna", 
                                                                              'Donna-6016.php', 
                                                                              'Donna-6016.php', 
                                                                              CatTree[10].childs[1],
                                                                              null);
              CatTree[10].childs[2] = new TreeItem(5909, 
                                                                              6077, 
                                                                              "Mix and Match (DE)", 
                                                                              'MixandMatchDE-5909.php', 
                                                                              'MixandMatchDE-5909.php', 
                                                                              CatTree[10],
                                                                              null);
              CatTree[10].childs[3] = new TreeItem(5934, 
                                                                              6077, 
                                                                              "Mix and Match (EN)", 
                                                                              'MixandMatchEN-5934.php', 
                                                                              'MixandMatchEN-5934.php', 
                                                                              CatTree[10],
                                                                              null);
              CatTree[10].childs[4] = new TreeItem(5884, 
                                                                              6077, 
                                                                              "Mix en Match (NL)", 
                                                                              'MixenMatchNL-5884.php', 
                                                                              'MixenMatchNL-5884.php', 
                                                                              CatTree[10],
                                                                              null);
              CatTree[10].childs[5] = new TreeItem(6085, 
                                                                              6077, 
                                                                              "Job Vacancies", 
                                                                              'JobVacancies-6085.php', 
                                                                              'JobVacancies-6085.php', 
                                                                              CatTree[10],
                                                                              null);
              CatTree[10].childs[6] = new TreeItem(6078, 
                                                                              6077, 
                                                                              "GT Corse gloves", 
                                                                              'GTCorsegloves-6078.php', 
                                                                              'GTCorsegloves-6078.php', 
                                                                              CatTree[10],
                                                                              null);
              CatTree[11] = new TreeItem(6079, 
                                                                              -1, 
                                                                              "Movie popup", 
                                                                              'Moviepopup-6079.php', 
                                                                              'Moviepopup-6079.php', 
                                                                              null,
                                                                              null);
      	/** End_of_the_Tree - used for sitemap.php on the actual site. */
	

