/*
-----------------------------------------------
Site: MAE
Name: People
----------------------------------------------- */

jQuery(function($) {
	var people = {
		findNoPictureLists : function() {
			var people = $('.people_list');
			people.children('ul').each(function() {
				if (!$(this).find('.teachingpic').children().length) people.addClass('nopic');
			});
		}
	};
	people.findNoPictureLists();
});