function Bio_contract(id) {
	$("#bioMore_" + id).hide("blind", {direction: "vertical" }, 1000);
	document.getElementById("bioMore_expand_" + id).style.display = "inline";
	document.getElementById("bioMore_contract_" + id).style.display = "none";
}

function Bio_expand(id) {
	document.getElementById("bioMore_expand_" + id).style.display = "none";
	document.getElementById("bioMore_contract_" + id).style.display = "inline";
	$("#bioMore_" + id).show("blind", {direction: "vertical" }, 1000);
}

function Bio_toggle(id) {
	if (document.getElementById("bioMore_expand_" + id).style.display == "none")
		Bio_contract(id);
	else
		Bio_expand(id);
}
