var current_active = "bioStart";
function person_swapper(person) {
document.getElementById(current_active).style.visibility = "hidden";
document.getElementById(person).style.visibility = "visible";
current_active = person;
}
