<!--
function linkFocus(){
					
					pathArray = window.location.pathname.split( '/' );
					pathArray = pathArray.reverse();
		
					var meny = pathArray[1];
					
					if (meny == "utbildningar"){							 
						document.getElementById("ulTagg").style.display="block";
					}
					else if (meny == "lip-focus"){						
						document.getElementById("active").style.display="block";
					}
					
					var fil = pathArray[0];
					
					if(fil != "")
					{
						document.getElementById(fil).style.background="#dbdbff";
					}
					else 
					{
						document.getElementById("index.html").style.background="#dbdbff";
					}
				
				}
			linkFocus();
//-->
