// This function changes the colour of the nav button when moused over
function swapit(what)
	{
	document.getElementById(what).style.backgroundColor = "e8edcc";
	}

// This function returns the colour of the nav button when moused out
function swapitback(what)
	{
	document.getElementById(what).style.backgroundColor = "transparent";
	}