$(document).ready(function(){
				
var tallheight = 0;
				$('.item-list').each(function(){
					$(this).find('li .name').each(function(){
						var elHeight = $(this).height();
						if(tallheight < elHeight){
							tallheight = elHeight;
							return tallheight;
						}
					})
					$(this).find('li .name').css('height', tallheight);
				})
				
			})
