﻿// JSON Document
var structure = {
	"welcome": {										// Section folder name
		"label": "Tervetuloa",								// Section label
		"pages": [										// List of pages, first one is index
			{"file": "index.html", "label": ""}			// file: File name of page, label: Label of page
		]
	},
	
	"introduction": {
		"label": "Johdanto",
		"pages": [
			{"file": "why_do_i_need_to_protect_my_computer.html", "label": "Miksi tietokone on suojattava?"},
			{"file": "malware_and_other_threats.html", "label": "Haittaohjelmat ja muut uhat"},
			{"file": "how_can_i_protect_my_computer.html", "label": "Miten voin suojata tietokoneeni?"},
			{"file": "how_do_i_use_my_computer_safely.html", "label": "Miten voin käyttää tietokonetta turvallisesti?"}
		]
	},
	
	"installation": {
		"label": "Asennus",
		"pages": [
			{"file": "before_you_install.html", "label": "Ennen asentamista"},	
			{"file": "obtain_subs_key.html", "label": "Tilauskoodin hankkiminen"},	
			{"file": "installation_steps_1.html", "label": "Asennusvaiheet - ohjelmiston asentaminen"},
			{"file": "installation_steps_2.html", "label": "Asennusvaiheet - lapsilukon määrittäminen"}
		]
	},
	
	"using": {
		"label": "Käyttäminen",
		"pages": [
			{"file": "opening_the_program.html", "label": "Ohjelman avaaminen"},
			{"file": "the_main_user_interface.html", "label": "Pääkäyttöliittymä"},
			{"file": "virus_and_spy_protection.html", "label": "Virus- ja vakoiluohjelmatarkistus"},
			{"file": "internet_shield.html", "label": "Verkkoyhteyksien suojaaminen"},
			{"file": "spam_control.html", "label": "Internetin käyttäminen turvallisesti"},
			{"file": "automatic_updates.html", "label": "Automaattiset päivitykset"}
		]
	},
	
	"faq": {
		"label": "Usein kysytyt kysymykset",
		"pages": [
			{"file": "general.html", "label": "Yleisiä asioita koskevat kysymykset"},
			{"file": "installation.html", "label": "Asennusta koskevat kysymykset"},
			{"file": "special_configuration.html", "label": "Erikoismäärityksiä koskevat kysymykset"},
			{"file": "parental_control.html", "label": "Lapsilukkoa koskevat kysymykset"},
			{"file": "automatic_updates.html", "label": "Automaattisia päivityksiä koskevat kysymykset"}
		]
	},
	
	"about": {
	    "label": "Tietoja",
		"pages": [
		    {"file": "fsecure.html", "label": "Tietoja F-Securesta"}
		]
    }
}
