;(function(jQuery) { 
	jQuery(function() {
		jQuery("div.person .picture").toggle(function() {
		jQuery(this).parents('.person').children(".info").slideUp("slow");
		jQuery(this).parents('.person').children(".info").parent().addClass("active");
	 },
	function() {
		jQuery(this).parents('.person').children(".info").slideDown("fast"); 
		jQuery(this).parents('.person').children(".info").parent().removeClass("active");
	});

  });
})
(jQuery);