// HIGHLIGHTS ACTIVE MENU ITEM 
function setActive()
{

// activeColor IS THE HIGHLIGHT COLOR OF THE CURRENT MENU
var activeColor = "#598527";
	
if(window.location.toString().indexOf("lab")!=-1)
	{
	document.getElementById('lab').style.color=activeColor;
	}
else if(window.location.toString().indexOf("work")!=-1)
	{
	document.getElementById('work').style.color=activeColor;
	}
else if(window.location.toString().indexOf("contact")!=-1)
	{
	document.getElementById('contact').style.color=activeColor;
	}
else if(window.location.toString().indexOf("about")!=-1)
	{
	document.getElementById('about').style.color=activeColor;
	}
else if(window.location.toString().indexOf("news")!=-1)
	{
	document.getElementById('news').style.color=activeColor;
	}
else
	{
	document.getElementById('home').style.color=activeColor;
	}
}
