// JavaScript Document

var sPath = window.location.pathname;
//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

if(sPage == "" ){
	document.getElementById('home').src = 'images/menu/homeSel.gif';
}
if(sPage == "index.html" ){
	document.getElementById('home').src = 'images/menu/homeSel.gif';
}
if(sPage == "Mr-Hanseen.html" || sPage == "Catherine-Killion.html" ){
	document.getElementById('people').src = 'images/menu/peopleSel.gif';
}

if(sPage == "strategie.html"){
	document.getElementById('strategie').src = 'images/menu/strategieSel.gif';
}

if(sPage == "alliances.html"){
	document.getElementById('alliances').src = 'images/menu/alliancesSel.gif';
}

if(sPage == "insights.html"){
	document.getElementById('insights').src = 'images/menu/insightsSel.gif';
}


