var listing_types = new Array();
b = new Node('1','buy');
t = new Node('1','Residential');
t.children.push(new Node('5','Apartment'));
t.children.push(new Node('22','Home & Income'));
t.children.push(new Node('1','House'));
t.children.push(new Node('21','Land'));
t.children.push(new Node('23','Lifestyle'));
t.children.push(new Node('20','Other'));
t.children.push(new Node('2','Unit'));
b.children.push(t);
t = new Node('4','Business');
t.children.push(new Node('70','Accommodation'));
t.children.push(new Node('71','Agricultural Services'));
t.children.push(new Node('72','Automotive'));
t.children.push(new Node('73','Business/Prof. Services & Agencies'));
t.children.push(new Node('74','Construction & Contracting'));
t.children.push(new Node('75','Fishing & Forestry'));
t.children.push(new Node('76','Health & Education'));
t.children.push(new Node('77','Hire/Rental Companies'));
t.children.push(new Node('78','Manufacturing'));
t.children.push(new Node('79','Mining'));
t.children.push(new Node('80','Other'));
t.children.push(new Node('81','Personal/Other Services'));
t.children.push(new Node('82','Security'));
t.children.push(new Node('83','Tourist & Leisure Services Retail Trade'));
t.children.push(new Node('84','Transport, Storage & Distribution'));
t.children.push(new Node('85','Wholesale Trade'));
b.children.push(t);
t = new Node('2','Commercial');
t.children.push(new Node('36','Commercial Land'));
t.children.push(new Node('33','Hotel'));
t.children.push(new Node('32','Industrial'));
t.children.push(new Node('31','Offices'));
t.children.push(new Node('35','Other'));
t.children.push(new Node('30','Retail'));
t.children.push(new Node('34','Tourism'));
b.children.push(t);
t = new Node('3','Rural');
t.children.push(new Node('50','Cropping'));
t.children.push(new Node('51','Dairy'));
t.children.push(new Node('52','Farmlet'));
t.children.push(new Node('53','Horticulture'));
t.children.push(new Node('54','Livestock'));
t.children.push(new Node('56','Mixed Farming'));
t.children.push(new Node('55','Viticulture'));
t.children.push(new Node('58','Lifestyle'));
t.children.push(new Node('57','Other'));
b.children.push(t);
listing_types.push(b);
b = new Node('2','rent');
t = new Node('5','Residential');
t.children.push(new Node('104','Apartment'));
t.children.push(new Node('120','Home & Income'));
t.children.push(new Node('100','House'));
t.children.push(new Node('121','Lifestyle'));
t.children.push(new Node('119','Other'));
t.children.push(new Node('101','Unit'));
b.children.push(t);
t = new Node('6','Commercial');
t.children.push(new Node('170','Accommodation'));
t.children.push(new Node('171','Agricultural Services'));
t.children.push(new Node('172','Automotive'));
t.children.push(new Node('173','Business/Prof. Services & Agencies'));
t.children.push(new Node('136','Commercial Land'));
t.children.push(new Node('174','Construction & Contracting'));
t.children.push(new Node('175','Fishing & Forestry'));
t.children.push(new Node('176','Health & Education'));
t.children.push(new Node('177','Hire/Rental Companies'));
t.children.push(new Node('133','Hotel'));
t.children.push(new Node('132','Industrial'));
t.children.push(new Node('178','Manufacturing'));
t.children.push(new Node('179','Mining'));
t.children.push(new Node('131','Offices'));
t.children.push(new Node('135','Other'));
t.children.push(new Node('181','Personal/Other Services'));
t.children.push(new Node('130','Retail'));
t.children.push(new Node('182','Security'));
t.children.push(new Node('134','Tourism'));
t.children.push(new Node('183','Tourist & Leisure Services Retail Trade'));
t.children.push(new Node('184','Transport, Storage & Distribution'));
t.children.push(new Node('185','Wholesale Trade'));
b.children.push(t);
listing_types.push(b);
