$(document).ready(function(){

	$('.team-item .teamRight a').click(function() {
		$('.teamDescription', $(this).parent().parent()).show();
		$(this).hide();
		
		return false;
	});
	
	$('.teamDescription a.hideTeamDesc').click(function() {
		$(this).parent().hide();
		$('.teamRight a', $(this).parent().parent()).show();
		
		return false;
	})

});
