<? if(count($arResult["MORE_PHOTO"])>0):
foreach($arResult["MORE_PHOTO"] as $PHOTO): ?>
<? $file = CFile::ResizeImageGet($PHOTO, array('width'=>'50', 'height'=>'50'), BX_RESIZE_IMAGE_EXACT, true); ?>
<div class="catalog-detail-image">
<a rel="catalog-detail-images" href="<?=$PHOTO["SRC_PREVIEW"]?>">
<img src="<?=$file["src"]?>" width="<?=$file["width"]?>" height="<?=$file["height"]?>" alt="" />
</a>
</div>
<? endforeach;
endif?>
<? endif;?>