function showbio() {
	var lilbio = document.getElementById('partialbio').setAttribute((document.all ? 'className' : 'class'),'padme hidden');
	var bigbio = document.getElementById('fullbio').setAttribute((document.all ? 'className' : 'class'),'padme');
}

function closebio() {
	var lilbio = document.getElementById('partialbio').setAttribute((document.all ? 'className' : 'class'),'padme');
	var bigbio = document.getElementById('fullbio').setAttribute((document.all ? 'className' : 'class'),'padme hidden');
}