/* TABBED MENU FUNCTIONALITY */
function tabOver(id) {
	var x = document.getElementById(id);
	x.style.backgroundColor = "#A6DB90";
	x.style.border = "1px solid #398B2F";
}

function tabOut(id) {
	var x = document.getElementById(id);
	x.style.backgroundColor = "#AFA17A";
	x.style.border = "1px solid #D3BE96";
}

/* BIOGRAPHY FUNCTIONALITY */
function over(id) {
	document.getElementById(id).style.textDecoration = "underline";
}
function out(id) {
	document.getElementById(id).style.textDecoration = "none";
}

function show(id) {
	document.getElementById(id).style.display = "block";
}
function hide(id) {
	document.getElementById(id).style.display = "none";
}