﻿function showProductImage(image) {

    //$(".ImgBox").find("img").attr("src","images/product/large/" + image);


    MagicZoom.update($(".ImgBox").find("a").get(0), "images/product/large/" + image, "images/product/medium/" + image);
    
    MagicZoom.update($(".ImgBox").find("img").get(0), "images/product/large/" + image, "images/product/large/" + image);
    MagicZoom.update($(".ImgBox").find("MagicZoomBigImageCont").get(0), "images/product/large/" + image, "images/product/medium/" + image);

    MagicZoom.refresh();
    MagicZoom.start(document.getElementById('zoom'));
}