/*
 Master GCL array
 Created:  2002-03-23
 Issued:   2002-03-23
 Modified: 2002-03-24
 Debugged for:
  Internet Explorer 5.5 and 6.0 for Windows
  Mozilla 0.9.3 for Windows
  Netscape Navigator 3.01 and 4.73 for Windows
  Opera 6.0 for Windows
*/
// Maximum depth of the GCL hierarchy
//////////////////////////////////////////////////////
var maxlevels = 5;
// Category constructor
// ~~~~~~~~~~~~~~~~~~~~
// n          = subsidiary terms
// termstring = primary term
//////////////////////////////////////////////////////
function category(n,termstring){
  this.size = n;
  if(n>0){
    for(i=1; i<=n; i++){
      this[i] = 0;  
    }
  }
  this.term = termstring;
  return (this);
}
// Government Category List, version 1.0, January 2002
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// To get primary term for a category use:
// var myterm = GCL[1].term;
// var myterm = GCL[1][1].term;
// 
// To get the number of subsidiary terms use:
// var subterms = GCL[1].size;
//////////////////////////////////////////////////////
var GCL = new category(12,"Government Category List");
// Top level term
//////////////////////////////////////////////////////
GCL[1] = new category(10,"Agriculture, environment and natural resources");
GCL[1][1] = new category(4,"Energy and fuel");
GCL[1][1][1] = new category(0,"Energy conservation");
GCL[1][1][2] = new category(0,"Fossil fuels");
GCL[1][1][3] = new category(0,"Nuclear energy");
GCL[1][1][4] = new category(0,"Renewable energy");
GCL[1][2] = new category(5,"Environmental protection");
GCL[1][2][1] = new category(0,"Climate and weather");
GCL[1][2][2] = new category(0,"Coastal erosion and protection");
GCL[1][2][3] = new category(0,"Environmental monitoring");
GCL[1][2][4] = new category(0,"Nature conservation");
GCL[1][2][5] = new category(0,"Pollution");
GCL[1][3] = new category(4,"Farming");
GCL[1][3][1] = new category(0,"Arable farming");
GCL[1][3][2] = new category(0,"Common Agricultural Policy");
GCL[1][3][3] = new category(1,"Crops");
GCL[1][3][3][1] = new category(0,"Genetically modified food and crops");
GCL[1][3][4] = new category(0,"Livestock farming");
GCL[1][4] = new category(1,"Fisheries");
GCL[1][4][1] = new category(0,"Common Fisheries Policy");
GCL[1][5] = new category(0,"Forestry");
GCL[1][6] = new category(1,"Horticulture");
GCL[1][6][1] = new category(0,"Common Agricultural Policy");
GCL[1][7] = new category(5,"Land");
GCL[1][7][1] = new category(0,"Agricultural land");
GCL[1][7][2] = new category(1,"Countryside");
GCL[1][7][2][1] = new category(0,"Access to countryside");
GCL[1][7][3] = new category(0,"Flooding");
GCL[1][7][4] = new category(0,"Planning (land use)");
GCL[1][7][5] = new category(0,"Wetlands");
GCL[1][8] = new category(4,"Plants and animals");
GCL[1][8][1] = new category(3,"Animal health");
GCL[1][8][1][1] = new category(0,"BSE, CJD and TSEs");
GCL[1][8][1][2] = new category(0,"Foot and mouth disease");
GCL[1][8][1][3] = new category(0,"Tuberculosis");
GCL[1][8][2] = new category(2,"Animal rights and welfare");
GCL[1][8][2][1] = new category(0,"Animal experimentation");
GCL[1][8][2][2] = new category(0,"Hunting");
GCL[1][8][3] = new category(0,"Pest and weed control");
GCL[1][8][4] = new category(0,"Plant health");
GCL[1][9] = new category(3,"Waste management");
GCL[1][9][1] = new category(0,"Composting");
GCL[1][9][2] = new category(0,"Recycling (waste)");
GCL[1][9][3] = new category(0,"Sewage treatment and disposal");
GCL[1][10] = new category(0,"Water resources");
// Top level term
//////////////////////////////////////////////////////
GCL[2] = new category(7,"Arts, recreation and travel");
GCL[2][1] = new category(10,"Culture and creativity");
GCL[2][1][1] = new category(0,"Architecture");
GCL[2][1][2] = new category(0,"Crafts");
GCL[2][1][3] = new category(0,"Heritage");
GCL[2][1][4] = new category(0,"Libraries and archives");
GCL[2][1][5] = new category(0,"Literature and writing");
GCL[2][1][6] = new category(0,"Millennium projects");
GCL[2][1][7] = new category(0,"Museums and galleries");
GCL[2][1][8] = new category(0,"Music");
GCL[2][1][9] = new category(0,"Performing arts");
GCL[2][1][10] = new category(0,"Visual arts");
GCL[2][2] = new category(1,"Gambling and lotteries");
GCL[2][2][1] = new category(0,"National Lottery");
GCL[2][3] = new category(0,"Parks and gardens");
GCL[2][4] = new category(0,"Passports and visas");
GCL[2][5] = new category(5,"Sports and recreation");
GCL[2][5][1] = new category(0,"Athletics");
GCL[2][5][2] = new category(0,"Football");
GCL[2][5][3] = new category(0,"Hunting");
GCL[2][5][4] = new category(0,"Water sports");
GCL[2][5][5] = new category(0,"Winter sports");
GCL[2][6] = new category(0,"Tourism");
GCL[2][7] = new category(7,"Transport");
GCL[2][7][1] = new category(0,"Air transport");
GCL[2][7][2] = new category(0,"Freight transport");
GCL[2][7][3] = new category(0,"Inland waterways");
GCL[2][7][4] = new category(0,"Ports and maritime transport");
GCL[2][7][5] = new category(0,"Public transport");
GCL[2][7][6] = new category(0,"Rail transport");
GCL[2][7][7] = new category(1,"Roads and road transport");
GCL[2][7][7][1] = new category(0,"Road safety");
// Top level term
//////////////////////////////////////////////////////
GCL[3] = new category(7,"Business and industry");
GCL[3][1] = new category(10,"Business practice and regulation");
GCL[3][1][1] = new category(0,"Advertising");
GCL[3][1][2] = new category(0,"Business development");
GCL[3][1][3] = new category(0,"Business management");
GCL[3][1][4] = new category(1,"Charities");
GCL[3][1][4][1] = new category(0,"Volunteering");
GCL[3][1][5] = new category(0,"Competitiveness");
GCL[3][1][6] = new category(0,"e-Commerce");
GCL[3][1][7] = new category(1,"Occupational health and safety");
GCL[3][1][7][1] = new category(0,"Fire safety");
GCL[3][1][8] = new category(0,"Regulation and deregulation");
GCL[3][1][9] = new category(0,"Standards, weights and measures");
GCL[3][1][10] = new category(0,"Working hours, terms and conditions");
GCL[3][2] = new category(5,"Business sectors");
GCL[3][2][1] = new category(1,"Building and construction");
GCL[3][2][1][1] = new category(0,"Building regulations");
GCL[3][2][2] = new category(0,"Communications industries");
GCL[3][2][3] = new category(6,"Distribution and service industries");
GCL[3][2][3][1] = new category(1,"Distribution services");
GCL[3][2][3][1][1] = new category(0,"Post Office");
GCL[3][2][3][2] = new category(0,"Financial service industries");
GCL[3][2][3][3] = new category(0,"Food and drink services");
GCL[3][2][3][4] = new category(0,"Retail trade");
GCL[3][2][3][5] = new category(0,"Tourism");
GCL[3][2][3][6] = new category(4,"Utilities");
GCL[3][2][3][6][1] = new category(0,"Electricity supply");
GCL[3][2][3][6][2] = new category(0,"Gas supply");
GCL[3][2][3][6][3] = new category(0,"Telephone services");
GCL[3][2][3][6][4] = new category(0,"Water supply");
GCL[3][2][4] = new category(5,"Manufacturing");
GCL[3][2][4][1] = new category(0,"Chemical industry");
GCL[3][2][4][2] = new category(0,"Defence industries");
GCL[3][2][4][3] = new category(0,"Electronics industry");
GCL[3][2][4][4] = new category(1,"Food manufacturing industry");
GCL[3][2][4][4][1] = new category(0,"Meat and livestock industries");
GCL[3][2][4][5] = new category(0,"Motor industry");
GCL[3][2][5] = new category(0,"Mineral extraction, mining, quarrying");
GCL[3][3] = new category(1,"Companies");
GCL[3][3][1] = new category(0,"Small and medium enterprises");
GCL[3][4] = new category(0,"Consumer affairs");
GCL[3][5] = new category(4,"Energy and fuel");
GCL[3][5][1] = new category(0,"Energy conservation");
GCL[3][5][2] = new category(0,"Fossil fuels");
GCL[3][5][3] = new category(0,"Nuclear energy");
GCL[3][5][4] = new category(0,"Renewable energy");
GCL[3][6] = new category(4,"International trade");
GCL[3][6][1] = new category(0,"Exports");
GCL[3][6][2] = new category(0,"Globalisation");
GCL[3][6][3] = new category(0,"Imports");
GCL[3][6][4] = new category(0,"Trade agreements");
GCL[3][7] = new category(7,"Transport");
GCL[3][7][1] = new category(0,"Air transport");
GCL[3][7][2] = new category(0,"Freight transport");
GCL[3][7][3] = new category(0,"Inland waterways");
GCL[3][7][4] = new category(0,"Ports and maritime transport");
GCL[3][7][5] = new category(0,"Public transport");
GCL[3][7][6] = new category(0,"Rail transport");
GCL[3][7][7] = new category(1,"Roads and road transport");
GCL[3][7][7][1] = new category(0,"Road safety");
// Top level term
//////////////////////////////////////////////////////
GCL[4] = new category(10,"Crime, law, justice and rights");
GCL[4][1] = new category(2,"Animal rights and welfare");
GCL[4][1][1] = new category(0,"Animal experimentation");
GCL[4][1][2] = new category(0,"Hunting");
GCL[4][2] = new category(0,"Civil and human rights");
GCL[4][3] = new category(16,"Crime");
GCL[4][3][1] = new category(0,"Anti-social behaviour and disorder");
GCL[4][3][2] = new category(0,"Arson");
GCL[4][3][3] = new category(0,"Business crime");
GCL[4][3][4] = new category(0,"Domestic violence");
GCL[4][3][5] = new category(0,"Drug-related crime");
GCL[4][3][6] = new category(0,"Murder");
GCL[4][3][7] = new category(0,"Offenders");
GCL[4][3][8] = new category(0,"Organised crime and terrorism");
GCL[4][3][9] = new category(0,"Racially-motivated crime");
GCL[4][3][10] = new category(0,"Sex offences");
GCL[4][3][11] = new category(0,"Smuggling");
GCL[4][3][12] = new category(0,"Theft and burglary");
GCL[4][3][13] = new category(0,"Vehicle crime");
GCL[4][3][14] = new category(0,"Victims of crime");
GCL[4][3][15] = new category(0,"Violence against the person");
GCL[4][3][16] = new category(0,"War crime");
GCL[4][4] = new category(3,"Emergencies");
GCL[4][4][1] = new category(0,"Civil emergencies");
GCL[4][4][2] = new category(0,"Fire service");
GCL[4][4][3] = new category(0,"Police");
GCL[4][5] = new category(0,"Ethical issues");
GCL[4][6] = new category(0,"Extradition");
GCL[4][7] = new category(0,"Firearms");
GCL[4][8] = new category(8,"Justice system");
GCL[4][8][1] = new category(0,"Courts of law");
GCL[4][8][2] = new category(0,"Judiciary");
GCL[4][8][3] = new category(0,"Parole");
GCL[4][8][4] = new category(0,"Police");
GCL[4][8][5] = new category(0,"Prisons");
GCL[4][8][6] = new category(0,"Probation");
GCL[4][8][7] = new category(0,"Sentencing");
GCL[4][8][8] = new category(0,"Youth justice");
GCL[4][9] = new category(0,"Law");
GCL[4][10] = new category(4,"Security");
GCL[4][10][1] = new category(0,"Data security");
GCL[4][10][2] = new category(0,"National security");
GCL[4][10][3] = new category(0,"Personal security");
GCL[4][10][4] = new category(0,"Security of property");
// Top level term
//////////////////////////////////////////////////////
GCL[5] = new category(11,"Economics and finance");
GCL[5][1] = new category(0,"Capital and financial markets");
GCL[5][2] = new category(3,"Economic development");
GCL[5][2][1] = new category(0,"Regeneration");
GCL[5][2][2] = new category(0,"Rural development");
GCL[5][2][3] = new category(0,"Sustainable development");
GCL[5][3] = new category(0,"Euro and EMU");
GCL[5][4] = new category(2,"Investment");
GCL[5][4][1] = new category(0,"Inward investment");
GCL[5][4][2] = new category(0,"Outward investment");
GCL[5][5] = new category(0,"Labour market");
GCL[5][6] = new category(0,"Monopolies and mergers");
GCL[5][7] = new category(1,"Nationalisation/privatisation");
GCL[5][7][1] = new category(0,"Public private partnership");
GCL[5][8] = new category(1,"Personal finance");
GCL[5][8][1] = new category(0,"Pensions");
GCL[5][9] = new category(3,"Public finance");
GCL[5][9][1] = new category(0,"Budget (UK)");
GCL[5][9][2] = new category(0,"Government spending");
GCL[5][9][3] = new category(0,"Public funding");
GCL[5][10] = new category(7,"Tax");
GCL[5][10][1] = new category(0,"Corporation tax");
GCL[5][10][2] = new category(0,"Customs levies");
GCL[5][10][3] = new category(0,"Excise duties");
GCL[5][10][4] = new category(0,"Income tax");
GCL[5][10][5] = new category(0,"Local taxation");
GCL[5][10][6] = new category(0,"National insurance");
GCL[5][10][7] = new category(0,"VAT");
GCL[5][11] = new category(2,"UK economy");
GCL[5][11][1] = new category(0,"Living standards, incomes and wages");
GCL[5][11][2] = new category(0,"Prices and inflation");
// Top level term
//////////////////////////////////////////////////////
GCL[6] = new category(7,"Education, careers and employment");
GCL[6][1] = new category(0,"Career development");
GCL[6][2] = new category(5,"Education and skills");
GCL[6][2][1] = new category(0,"Adult education and training");
GCL[6][2][2] = new category(2,"Colleges and universities");
GCL[6][2][2][1] = new category(0,"Qualifications (post-16)");
GCL[6][2][2][2] = new category(0,"Student funding");
GCL[6][2][3] = new category(0,"Pre-school learning");
GCL[6][2][4] = new category(7,"Schools");
GCL[6][2][4][1] = new category(0,"Curriculum and qualifications (pre-16)");
GCL[6][2][4][2] = new category(0,"Pupil support");
GCL[6][2][4][3] = new category(0,"Qualifications (post-16)");
GCL[6][2][4][4] = new category(0,"School admission and choice");
GCL[6][2][4][5] = new category(0,"School management and funding");
GCL[6][2][4][6] = new category(0,"School standards and inspections");
GCL[6][2][4][7] = new category(0,"Teachers, governors and staff");
GCL[6][2][5] = new category(0,"Special educational needs");
GCL[6][3] = new category(0,"Employment relations");
GCL[6][4] = new category(0,"Equal opportunities");
GCL[6][5] = new category(1,"Occupational health and safety");
GCL[6][5][1] = new category(0,"Fire safety");
GCL[6][6] = new category(0,"Unemployment and jobseeking");
GCL[6][7] = new category(0,"Working hours, terms and conditions");
// Top level term
//////////////////////////////////////////////////////
GCL[7] = new category(10,"Government, politics and public administration");
GCL[7][1] = new category(5,"Central government");
GCL[7][1][1] = new category(0,"Cabinet");
GCL[7][1][2] = new category(0,"Executive agencies");
GCL[7][1][3] = new category(0,"Government departments");
GCL[7][1][4] = new category(0,"Ministers");
GCL[7][1][5] = new category(0,"Prime Minister");
GCL[7][2] = new category(0,"Civil Service");
GCL[7][3] = new category(6,"Constitution");
GCL[7][3][1] = new category(0,"Devolution");
GCL[7][3][2] = new category(0,"Monarchy");
GCL[7][3][3] = new category(0,"National Assembly for Wales");
GCL[7][3][4] = new category(0,"Northern Ireland Assembly");
GCL[7][3][5] = new category(0,"Scottish Parliament");
GCL[7][3][6] = new category(0,"UK Parliament");
GCL[7][4] = new category(0,"Devolved administrations");
GCL[7][5] = new category(0,"Electoral system");
GCL[7][6] = new category(0,"Honours system");
GCL[7][7] = new category(0,"Local government");
GCL[7][8] = new category(0,"Political parties");
GCL[7][9] = new category(4,"Public administration");
GCL[7][9][1] = new category(0,"Best value in public administration");
GCL[7][9][2] = new category(0,"Maladministration");
GCL[7][9][3] = new category(1,"Modernising government");
GCL[7][9][3][1] = new category(0,"e-Government");
GCL[7][9][4] = new category(0,"Public bodies");
GCL[7][10] = new category(2,"Regional policy");
GCL[7][10][1] = new category(0,"Government Offices for the Regions");
GCL[7][10][2] = new category(0,"Regional Development Agencies");
// Top level term
//////////////////////////////////////////////////////
GCL[8] = new category(11,"Health, nutrition and care");
GCL[8][1] = new category(3,"Animal health");
GCL[8][1][1] = new category(0,"BSE, CJD and TSEs");
GCL[8][1][2] = new category(0,"Foot and mouth disease");
GCL[8][1][3] = new category(0,"Tuberculosis");
GCL[8][2] = new category(0,"Benefits");
GCL[8][3] = new category(4,"Care");
GCL[8][3][1] = new category(0,"Care for children");
GCL[8][3][2] = new category(0,"Care for the disabled");
GCL[8][3][3] = new category(0,"Care for the elderly");
GCL[8][3][4] = new category(0,"Youth services");
GCL[8][4] = new category(0,"Carers and health professionals");
GCL[8][5] = new category(1,"Disabled people");
GCL[8][5][1] = new category(0,"Care for the disabled");
GCL[8][6] = new category(0,"Family planning");
GCL[8][7] = new category(12,"Food and drink");
GCL[8][7][1] = new category(0,"Baby foods");
GCL[8][7][2] = new category(0,"Drinks");
GCL[8][7][3] = new category(0,"Fish");
GCL[8][7][4] = new category(0,"Food labelling");
GCL[8][7][5] = new category(0,"Food safety");
GCL[8][7][6] = new category(0,"Food supply");
GCL[8][7][7] = new category(0,"Fruit and vegetables");
GCL[8][7][8] = new category(0,"Genetically modified food and crops");
GCL[8][7][9] = new category(0,"Meat");
GCL[8][7][10] = new category(0,"Milk and dairy products");
GCL[8][7][11] = new category(0,"Nutrition");
GCL[8][7][12] = new category(0,"Organic foods");
GCL[8][8] = new category(8,"Health");
GCL[8][8][1] = new category(0,"Dental health");
GCL[8][8][2] = new category(5,"Diseases");
GCL[8][8][2][1] = new category(0,"AIDS and HIV");
GCL[8][8][2][2] = new category(0,"BSE, CJD and TSEs");
GCL[8][8][2][3] = new category(0,"Cancer");
GCL[8][8][2][4] = new category(0,"Heart disease and stroke");
GCL[8][8][2][5] = new category(0,"Tuberculosis");
GCL[8][8][3] = new category(3,"Drugs and alcohol");
GCL[8][8][3][1] = new category(0,"Alcohol use and abuse");
GCL[8][8][3][2] = new category(0,"Drugs use and abuse");
GCL[8][8][3][3] = new category(0,"Smoking");
GCL[8][8][4] = new category(0,"Environmental health");
GCL[8][8][5] = new category(0,"Health education");
GCL[8][8][6] = new category(0,"Medicines");
GCL[8][8][7] = new category(0,"Mental health");
GCL[8][8][8] = new category(0,"Preventive medicine");
GCL[8][9] = new category(5,"National Health Service (NHS)");
GCL[8][9][1] = new category(0,"Ambulance services");
GCL[8][9][2] = new category(0,"NHS management");
GCL[8][9][3] = new category(0,"NHS performance");
GCL[8][9][4] = new category(0,"Primary health care");
GCL[8][9][5] = new category(0,"Secondary health care");
GCL[8][10] = new category(2,"Private health care");
GCL[8][10][1] = new category(0,"Private health insurance");
GCL[8][10][2] = new category(0,"Private hospitals");
GCL[8][11] = new category(6,"Safety");
GCL[8][11][1] = new category(0,"Fire safety");
GCL[8][11][2] = new category(0,"Food safety");
GCL[8][11][3] = new category(0,"Hazardous substances");
GCL[8][11][4] = new category(0,"Hygiene");
GCL[8][11][5] = new category(0,"Road safety");
GCL[8][11][6] = new category(0,"Safety in the home");
// Top level term
//////////////////////////////////////////////////////
GCL[9] = new category(9,"Information and communication");
GCL[9][1] = new category(0,"Communications industries");
GCL[9][2] = new category(0,"Data security");
GCL[9][3] = new category(0,"Freedom of information");
GCL[9][4] = new category(1,"Information technology");
GCL[9][4][1] = new category(0,"Internet");
GCL[9][5] = new category(0,"Intellectual property");
GCL[9][6] = new category(0,"Intelligence");
GCL[9][7] = new category(0,"Libraries and archives");
GCL[9][8] = new category(2,"Media and the press");
GCL[9][8][1] = new category(0,"Advertising");
GCL[9][8][2] = new category(0,"Broadcasting");
GCL[9][9] = new category(0,"Privacy and data protection");
// Top level term
//////////////////////////////////////////////////////
GCL[10] = new category(10,"International affairs and defence");
GCL[10][1] = new category(6,"Defence");
GCL[10][1][1] = new category(3,"Armed forces");
GCL[10][1][1][1] = new category(0,"British Army");
GCL[10][1][1][2] = new category(0,"Royal Air Force");
GCL[10][1][1][3] = new category(0,"Royal Navy");
GCL[10][1][2] = new category(0,"Defence agencies");
GCL[10][1][3] = new category(0,"Defence equipment and supplies");
GCL[10][1][4] = new category(0,"Defence land and buildings");
GCL[10][1][5] = new category(2,"Defence policy");
GCL[10][1][5][1] = new category(0,"Arms control");
GCL[10][1][5][2] = new category(1,"Defence alliances and organisations");
GCL[10][1][5][2][1] = new category(0,"NATO");
GCL[10][1][6] = new category(1,"Military operations");
GCL[10][1][6][1] = new category(0,"Peace-keeping");
GCL[10][2] = new category(1,"Embassies and consulates");
GCL[10][2][1] = new category(0,"Passports and visas");
GCL[10][3] = new category(4,"European Union");
GCL[10][3][1] = new category(0,"Common Agricultural Policy");
GCL[10][3][2] = new category(0,"Common Fisheries Policy");
GCL[10][3][3] = new category(0,"EU institutions");
GCL[10][3][4] = new category(0,"Euro and EMU");
GCL[10][4] = new category(0,"Extradition");
GCL[10][5] = new category(0,"Foreign policy");
GCL[10][6] = new category(1,"Immigration and asylum");
GCL[10][6][1] = new category(0,"Immigration detention centres");
GCL[10][7] = new category(1,"International conflict");
GCL[10][7][1] = new category(0,"Economic sanctions");
GCL[10][8] = new category(0,"International development and aid");
GCL[10][9] = new category(5,"International organisations");
GCL[10][9][1] = new category(0,"Commonwealth");
GCL[10][9][2] = new category(0,"NATO");
GCL[10][9][3] = new category(0,"OECD");
GCL[10][9][4] = new category(0,"United Nations");
GCL[10][9][5] = new category(0,"World Bank");
GCL[10][10] = new category(0,"International relations");
// Top level term
//////////////////////////////////////////////////////
GCL[11] = new category(13,"People, communities and living");
GCL[11][1] = new category(0,"Benefits");
GCL[11][2] = new category(1,"Charities");
GCL[11][2][1] = new category(0,"Volunteering");
GCL[11][3] = new category(0,"Death and funerals");
GCL[11][4] = new category(3,"Drugs and alcohol");
GCL[11][4][1] = new category(0,"Alcohol use and abuse");
GCL[11][4][2] = new category(0,"Drugs use and abuse");
GCL[11][4][3] = new category(0,"Smoking");
GCL[11][5] = new category(5,"Housing");
GCL[11][5][1] = new category(0,"Home ownership");
GCL[11][5][2] = new category(0,"Homelessness");
GCL[11][5][3] = new category(0,"Housing repairs and renovation");
GCL[11][5][4] = new category(0,"Private rented accommodation");
GCL[11][5][5] = new category(0,"Social housing");
GCL[11][6] = new category(0,"Marriage and divorce");
GCL[11][7] = new category(0,"Pensions");
GCL[11][8] = new category(11,"People");
GCL[11][8][1] = new category(0,"Carers and health professionals");
GCL[11][8][2] = new category(1,"Disabled people");
GCL[11][8][2][1] = new category(0,"Care for the disabled");
GCL[11][8][3] = new category(1,"Families and children");
GCL[11][8][3][1] = new category(0,"Care for children");
GCL[11][8][4] = new category(0,"Men");
GCL[11][8][5] = new category(0,"Minority groups");
GCL[11][8][6] = new category(0,"Occupations and employees");
GCL[11][8][7] = new category(1,"Older people");
GCL[11][8][7][1] = new category(0,"Care for the elderly");
GCL[11][8][8] = new category(0,"Refugees");
GCL[11][8][9] = new category(0,"Victims of crime");
GCL[11][8][10] = new category(0,"Women");
GCL[11][8][11] = new category(1,"Young people");
GCL[11][8][11][1] = new category(0,"Youth services");
GCL[11][9] = new category(0,"Population and migration");
GCL[11][10] = new category(0,"Religion");
GCL[11][11] = new category(0,"Rural communities");
GCL[11][12] = new category(2,"Social inclusion");
GCL[11][12][1] = new category(0,"Equal opportunities");
GCL[11][12][2] = new category(0,"Race relations");
GCL[11][13] = new category(0,"Urban communities");
// Top level term
//////////////////////////////////////////////////////
GCL[12] = new category(3,"Science, technology and innovation");
GCL[12][1] = new category(1,"Biotechnology");
GCL[12][1][1] = new category(0,"Genetically modified food and crops");
GCL[12][2] = new category(1,"Information technology");
GCL[12][2][1] = new category(0,"Internet");
GCL[12][3] = new category(0,"Research and development")