// JavaScript Document

jQuery(function(){
	$('#equipe .pessoa>a').toggle(							
		function(){
			
			$(this).parent().removeClass('fechado').addClass('aberto').children('div').show();
		},
		function(){
			$(this).parent().removeClass('aberto').addClass('fechado').children('div').hide();
		}
	)	
//	$('#equipe .pessoa>a').toggle(							
//		function(){
//			$(this).parent().children('div').show();
//		},
//		function(){
//			$(this).parent().children('div').hide();
//		}
//	)	
})
