$(document).ready(function() {
	// attach bio folding to the page http://jamisongrp.strangecode.com/our_team.html
	$('.bio_rest').css({'display':'none'});
	$('.bio_controls .more, .bio_controls .less').bind("click", function(){ 
		manageBioVisibility(this); 
		$(this).attr({'href':'javascript: void 0;'})
	});
});


function manageBioVisibility(trigger){
	var root = $(trigger).parent().parent().parent();
	var bio_rest = $(root).children('.bio_rest');
	var controls = $(trigger).parent().parent();
	if(!$(bio_rest).is(':visible')){
		$(bio_rest).show('slow');
		$(trigger).html('Read Less');
	}else{
		$(bio_rest).hide('slow');
		$(trigger).html('Read More');
	}
}
