function setActiveMenu(){
	var intBegin;
	var intEinde;
	var strMenu;
	intBegin = location.href.indexOf(".eu") + 4;
	intEinde = location.href.indexOf("/",intBegin);
	if(intEinde < intBegin){
		intEinde = intBegin;  
	}
	strMenu = location.href.substring(intBegin,intEinde);
	if(strMenu == ""){
		strMenu = "home";
	}
	document.getElementById(strMenu + "_link").style.backgroundImage = "url(../images/locomatic_" + strMenu + "_on.png)";
}