﻿var bioOpen = false;
$(function() {
	$(".name").click(function() {
		var theContainer = $(this).siblings(".bioContainer");
		if (bioOpen == true) {
			$(".bioContainer").not(theContainer).animate({ height: 0 }, 1000);
		}
		if (theContainer.height() > 0) {
			theContainer.animate({ height: 0 }, 1000);
			bioOpen = false;
		} else {
			theContainer.animate({ height: theContainer.children(".bio").height() }, 1000);
			bioOpen = true;
		}
	});
});
