$(document).ready(function(){
	$('.memberLogo img').each(function(){
		if($(this).height()>100) $(this).css({width:'auto',height:'auto'});
		if($(this).height()>100) $(this).css({width:'auto',height:'100px'});
		if($(this).width()>100) $(this).css({width:'100px', height:'auto'});
		$(this).css({paddingTop:Math.round(Number($(this).parents('.member').height()-$(this).height())/2+1)+'px'});
		$(this).bind('load',function(){
			$(this).css({paddingTop:Math.round(Number($(this).parents('.member').height()-$(this).height())/2+1)+'px'});
		});
	});
});

