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

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

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

//main links for the Solution page



IT.solutionsPageLinks = 
	[
		//link 1 -> Solutions link
		"Solutions", 
		//link 2 -> Eterprise 2.0 links
		["Enterprise 2.0",
				["Culture change"]
		],
		//link 3 -> Call to Action link with sublinks
		["Call to Action", 
				["Platform of Engagement", "Enterprise Social Networks"]
		],
		//link 4 Journey to the Cloud link
		["Journey to the Cloud", 
				["Benefits of 'The Cloud'", "Different Clouds"]
		], 
		//link 5 -> Advisory link
		["Advisory &#38 Consulting",
				["Client challenges", "The InTouch way", "Business value"]
		]
	];

//template html files -> content for the solutionPageContents
IT.solutionsPageContents =
	 [
	 	"solutions/solutions.ejs",
	 	["solutions/enterprise20.ejs", 
	 			["solutions/enterprise20Change.ejs"]
		],
	 	["solutions/c2A.ejs", 
	 			["solutions/c2APOE.ejs", "solutions/c2AESN.ejs"]
	 	],
	 	
	 	["solutions/journey.ejs",
	 			["solutions/journeyBenefits.ejs", "solutions/journeyDifferent.ejs"]
	 	], 
	 	["solutions/consulting.ejs",
	 			["solutions/consultingChallenges.ejs", "solutions/consultingInTouch", "solutions/consultingValue.ejs"]
	 	] 		
	 ];




