$(document).ready(function(){
	$('div.profile, .hide').hide();
	$('#team-bios h4').click(function(){
		$(this).next('div').toggle('slow');
		$(this).toggleClass('expand');
		if ($(this).hasClass('expand')) { $('img.left', this).fadeOut(); } 
			else { $('img.left', this).fadeIn(); }
		$(this).css({'cursor':'pointer'});
	});
	$('#team-bios h4').css({'cursor':'pointer'});
	$('body #grid h4.expandable').click(function(){
		$(this).toggleClass('expand').next('div').toggle('slow');
	});
});