jQuery(document).ready(function(){jQuery('.user-photo-trombi .widget-inner img.photo').each(function(){var maxWidth=55;var maxHeight=85;var ratio=maxWidth/maxHeight;var newRatio=0;var newWidth=0;var newHeight=0;var width=jQuery(this).width();var height=jQuery(this).height();var actualRatio=width/height;if(actualRatio<=ratio){newRatio=maxWidth/width;jQuery(this).attr("width",maxWidth);newHeight=height*newRatio;jQuery(this).attr("height",newHeight);jQuery(this).css("margin-top",-(newHeight-maxHeight)/2);}
if(actualRatio>ratio){newRatio=maxHeight/height;jQuery(this).attr("height",maxHeight);newWidth=width*newRatio;jQuery(this).attr("width",newWidth);jQuery(this).css("margin-left",-(newWidth-maxWidth)/2);}});});