(function($){

	function setupPeople(medewerkers) {
		$(medewerkers).find('.medewerker').each(function(index, item) {
			$(item).hover(function() {
						
				$(this).find('.people_img').css({
					display: 'none'
				});	
				
				$(this).find('.people_content').css({
					display: 'block'
				});
			}, function() {
				$(this).find('.people_img').css({
					display: 'block'
				});	
				
				$(this).find('.people_content').css({
					display: 'none'
				});			
			}
			);
		});
	}

	$.fn.people = function() {
		return this.each(function(index, item) {
			setupPeople(item);
		});
	}

})(this.jQuery);

$('.medewerkers').people();
