In the following code, you can change the line that says "$avatarlink = $mosConfig_live_site.'/images/comprofiler/tn'.$avatar;" and change the path to your thumbnail images.
Going by your example, you would change it to "$avatarlink = $mosConfig_live_site.'/images/comprofiler/tngallery/'.$avatar;"
if ( $avatar ) {
$avatarlink = $mosConfig_live_site.'/images/comprofiler/tn'.$avatar;
$txt = "<a href=\"".sefRelToAbs('index.php?option=com_comprofiler&task=userProfile&user='.$row->created_by)."\"><img src=\"$avatarlink\" border=\"0\" align=\"left\" class=\"authorimg\" /></a>";
}
I hope this helps!