function elaboraImmagini()
  {
    $("[id='foto_piccola']").each(function(i, el){
      $(el).unbind("click");
      $(el).bind("click", function(evt){
          evt.preventDefault();

          var codice = $(el).attr("codice");
          var serie = $(el).attr("serie");

          var url = "viewFotoSerieArticolo.php?idSerieArticolo=" + serie + "&gp=g";

          if (codice > " ")
            url = "viewFotoDett.php?idFotoDett=" + codice + "&gp=g";

          //var larghezza = $("#product").width();

          //$("#product_photo").width(larghezza).html("<a href='http://localhost/' rel='position: inside' class='cloud-zoom' id='zoom'><img src='" + url + "' width='" + larghezza + "' /></a>");

          $("#product_photo").html("<a href='" + url + "' rel=\"position: 'inside'\" class='cloud-zoom' id='zoom'><img src='" + url + "' width='100%'/></a>");

          $("#zoom").CloudZoom();

          $("#product_photo_piccole").show();
          $("#product_photo").show();
		  $(".close").show();
          $("#product").hide();
      });
    });

    $(".close").unbind("click");
	$(".close").bind("click", function(evt){
      $("#product").show();
		$(".close").hide();
      $("#product_photo").hide();
      $("#product_photo_piccole").hide();
    })
  }

$(document).ready
(
  function()
    {
      elaboraImmagini();
    }
)



