﻿$(document).ready(function() {
	removeProductImageZoom();
});

// On the product pages, this will detect the zoomable link on the main product image, and remove it.
function removeProductImageZoom() {
	var productZoom = document.getElementById("PhotoThumbnails_lnkProductPhotoZoom");

	if (productZoom != null) {
		var productImage = productZoom.getElementsByTagName("img")[0];
		productZoom.parentNode.appendChild(productImage);
		productZoom.parentNode.removeChild(productZoom);
	}
}
