﻿var array_galleria;
var n_galleria = 0;

function click_cambia() {
    n_galleria = n_galleria + 1;
   
    if (array_galleria.length == n_galleria)
        n_galleria = 0;

    var next_galleria = 0;
    if (array_galleria.length - 1 > n_galleria)
        next_galleria = n_galleria + 1;

    $('div.contenitore-vista img').attr("src", "/ShowIconcina.ashx?file=" + array_galleria[next_galleria] + "&on=1");
   
    var pippo = $('div.contenitore-vista img');
    var topolino = array_galleria[next_galleria];
    var pluto = array_galleria.length;

    $('#immagine_prodotto').remove();
    $('#prodotto-sx').addClass('loading');

    var img = new Image();
    img.id = 'immagine_prodotto';
    $(img).load(function () {
        $(img).hide();
        $('#prodotto-sx').removeClass('loading').append(img);
        $(img).show();

        $('a.a-cambia').bind('click', function (event) {
            click_cambia();
            $(this).unbind(event);
        });
        $(this).unbind('load');
        //fixPNG(img, 590, 590);
    }).error(function () {
        alert('errore');
    }).attr('src', '/ShowProdotto.ashx?file=' + array_galleria[n_galleria]);
}
