Как заменить скрипт так, чтобы работал не с "id", а c "class"
<div class="product__image">
<img class="product__image-small" src="images/universal_500.png" alt="500 мл" onclick="myFunction(this);">
<img class="product__image-small" src="images/universal_500-1.png" alt="500 мл" onclick="myFunction(this);">
<img class="product__image-small" src="images/universal_500-2.png" alt="500 мл" onclick="myFunction(this);">
</div>
<img class="product__image-big expandedImg" src="images/universal_500.png" id="expandedImg" >
скрипт:
function myFunction(imgs) {
var expandImg = document.getElementById("expandedImg");
expandImg.src = imgs.src;
expandImg.parentElement.style.display = "block";
}