');// Eventi Galleria$('div.galleria a.miniatura').click(function(ev) {ev.preventDefault();clearInterval($rotazione_automatica);cambia_immagine_galleria($(this).attr('id').replace('miniatura_', ''));});$('div.galleria figure.immagineGrande').click(function(ev) {ev.stopPropagation();clearInterval($rotazione_automatica);cambia_immagine_galleria($(this).attr('rel'));apri_ingrandimento_galleria();});$('div.galleria_espansa figure.immagineGrande').click(function(ev) {ev.stopPropagation();clearInterval($rotazione_automatica);cambia_immagine_galleria($(this).attr('rel'));apri_ingrandimento_galleria();});$('div.galleria a.frecciaSx').click(function(ev) {ev.stopPropagation();clearInterval($rotazione_automatica);cambia_immagine_galleria($(this).attr('rel'));});$('div.galleria a.frecciaDx').click(function(ev) {ev.stopPropagation();clearInterval($rotazione_automatica);cambia_immagine_galleria($(this).attr('rel'));});// Intercetto tasti per controllare l'ingrandimento$("body").keydown(function(e) {if (e.keyCode == 27) {if ($('#sfondoIngrandimento').is(':visible'))chiudi_ingrandimento_galleria();} else if (e.keyCode == 37) { // Sinistraif ($('#sfondoIngrandimento').is(':visible'))$('#sfondoIngrandimento #frecciaIngradimentoSx').trigger('click'); } else if (e.keyCode == 39) { // Destra if ($('#sfondoIngrandimento').is(':visible')) $('#sfondoIngrandimento #frecciaIngradimentoDx').trigger('click'); }}); $('div#divIngrandimento').on('swipeone', function(event, obj) { var direction = obj.description.split(":")[2]; if (direction == 'left') { $('#sfondoIngrandimento #frecciaIngradimentoSx').trigger('click'); } else { $('#sfondoIngrandimento #frecciaIngradimentoDx').trigger('click'); } });$(window).resize(function(){if ($('#sfondoIngrandimento').is(':visible'))ridimensiona_ingrandimento_galleria($('#divIngrandimento').outerWidth(), $('#divIngrandimento').outerHeight()); });$('#sfondoIngrandimento').click(function() {chiudi_ingrandimento_galleria();});$('#sfondoIngrandimento #imgIngrandimento').click(function(ev) {ev.stopPropagation();});$('#sfondoIngrandimento #chiudiIngrandimento').click(function(ev) {ev.stopPropagation();$('#sfondoIngrandimento').hide();});$('#sfondoIngrandimento #frecciaIngradimentoSx').click(function(ev) {ev.stopPropagation();cambia_immagine_galleria($(this).attr('rel'));});$('#sfondoIngrandimento #frecciaIngradimentoDx').click(function(ev) {ev.stopPropagation();cambia_immagine_galleria($(this).attr('rel'));});});$(window).bind("load", function() {var timeout = setTimeout(function() { $(".miniatura.galleria").trigger("sporty") }, 100);});//]]>