$(document).ready(function() {
$("#bio, #resume, #press, #copyright").hide();
});

doShowHide = function(idstr) {
    $("div.showhide:visible").each(function () {
	    if (this.id != idstr) $(this).hide("slow");
	});
    $("div.showhide#"+idstr).show("slow");
}