function hiliteButton(elem)
{
	elem.style.backgroundColor = "#666666";
}

function restoreButton(elem)
{
	elem.style.backgroundColor = "#1a1a1a";
}

function navigate(elem, url)
{
	restoreButton(elem);
	window.location = url;
}
