function subnavOver(whichOne) {
	document.getElementById('subnav-' + whichOne).style.borderColor = '#860826'
}

function subnavOut(whichOne) {
	document.getElementById('subnav-' + whichOne).style.borderColor = 'white'
}

function bioOn(whichOne) {
	document.getElementById('bioLink-icon-' + whichOne).style.display = 'block'
}

function bioOff(whichOne) {
	document.getElementById('bioLink-icon-' + whichOne).style.display = 'none'
}