/**
 * intouch links
 *  
 * @author ciskavriezenga
 */

//console.debug("______ LOADED _______ intouch_links.js file is loaded!")

/*
 * to edit the links, change the names in the arrays 
 * (array = ["...", "...", "..." etc])
 */

//main links for the Intouch page
IT.intouchPageLinks = 
	[
		//link 1 -> about intouch link
		"About Intouch", 
		//link 2 -> our vision
		"Our Vision", 
		//link 3 -> core values main link and sub menu links
		["Core-Values", 	
				["Effective", "Reliable", "Agile", "Accessible"]
		],
		//link 4 -> history 
		"History", 
		//link 5 -> csr
		"Responsibility", 
		//link 6 -> offices main link and sub menu links 
		["Offices", 
				["Netherlands", "Belgium", "U.K."]
		]
	];

//template html files -> content for the intouchPageLinks
IT.intouchPageContents =
	 [
	 	"intouch/aboutIntouch.ejs",
	 	"intouch/ourVision.ejs",	 
	 	["intouch/coreValues.ejs", 
	 			["intouch/core_effective.ejs", "intouch/core_reliable.ejs" ,
	 			 "intouch/core_agile.ejs", "intouch/core_accessible.ejs"]
	 	],
	 	"intouch/history.ejs",
	 	"intouch/csr.ejs",
	 	["intouch/offices.ejs",
	 			["intouch/offices_netherlands.ejs", 
	 			"intouch/offices_belgium.ejs", 
	 			"intouch/offices_uk.ejs"]
	 	] 
	 			
	 ]




