var aboutInfo = null;
function selectAbout()
{
	document.getElementById("infoArea").innerHTML = aboutInfo;
	document.getElementById("about").style.color = "gold";
	document.getElementById("contact").style.color = "white";
}
function selectContact()
{
	aboutInfo = document.getElementById("infoArea").innerHTML;
	document.getElementById("infoArea").innerHTML = "<a href='mailto:aaron@phinetech.com'>aaron@phinetech.com</a>";
	document.getElementById("about").style.color = "white";
	document.getElementById("contact").style.color = "gold";
}
