    var lastBio = 'team';

function switchBio(which)
{
    if (lastBio == which)
        return;
    document.getElementById(lastBio).style.display = 'none';
    document.getElementById(which).style.display = 'block';
    lastBio = which;
}
