;(function(jQuery) { 
	jQuery(function() {
		jQuery("div.person:has(.info) .picture").toggle(function() {
			if(jQuery.trim(jQuery(this).parents('.person').children('.info').html()) != "")
			{
				jQuery(this).parents('.person').children(".info").slideUp("slow");
				jQuery(this).parents('.person').children(".info").parent().addClass("active");
			}
	 },
	function() {
		 if(jQuery.trim(jQuery(this).parents('.person').children('.info').html()) != "")
		 {
			jQuery(this).parents('.person').children(".info").slideDown("fast"); 
			jQuery(this).parents('.person').children(".info").parent().removeClass("active");
		 }
	});

  });
})
(jQuery);
