﻿var currentUrl = window.location.toString();

function fixProductPage() {

    // TEMP IF (PROD PAGE LATER)
    if ($(".ProductPageWrapper").length) {

        var allImagesCode = "";

        if ($("div.ProductThumbnailsBody img").length > 1) {
            $("div.ProductThumbnailsBody img").each(function () {
                var newImageSrc = $(this).attr("src").replace(/thumbs/i, "medium");
                var newImageTitle = $(this).attr("title");
                var newImageAlt = $(this).attr("alt");
                var newImageName = newImageSrc.replace(/\/pub_images\/medium\//i,"");
                allImagesCode += "<img src='" + newImageSrc + "' alt='" + newImageAlt + "' title='" + newImageTitle + "' ";
                allImagesCode += "onclick=newZoomPopup('" + newImageName + "') />"; 
            });

            $("div.BigProductImage").html(allImagesCode);
        }

        $(".ProductThumbnailsWrapper").hide();

    }
}

function newZoomPopup(imgName){
    window.open ("/ProductPopup.aspx?filename=" + imgName, "Kistefos", "location=0,status=0,scrollbars=1,width=800,height=600"); 
}



// SCRIPTS TO BE RUN AT STARTUP BELOW -----
$(document).ready(function () {
    fixProductPage();
});


$(window).load(function () {

});
