//*****************************
// Codice Jquery              *
//*****************************

$(document).ready(function() {
    //Icona top
    scrolltotop.init();

    //Fancybox popup gallery
    if($("a.elemento-gallery").length) {
        $("a.elemento-gallery").fancybox({
            "padding": 4,
    	    "transitionIn": "elastic",
		    "transitionOut": "fade",
	        "speedIn": 400,
    	    "speedOut":	200,
            "overlayColor": "#000000",
		    "titleShow": true,
		    "titlePosition": "over",
		    "titleFormat": function(title, currentArray, currentIndex, currentOpts) {
		        return '<span id="fancybox-title-over">Immagine '+(currentIndex+1)+' / '+currentArray.length+'</span>';
		    }
        });
    }

    //Fancybox sez01 info
    if($("a.sez01-info").length) {
        $("a.sez01-info").fancybox({
            "padding": 4,
	        "width": 640,
		    "height": 420,
            "autoScale": false,
            "transitionIn": "elastic",
		    "transitionOut": "none",
    	    "type": "iframe",
            "overlayColor": "#000000"
	    });
    }

    //Fancybox sez01 preventivo
    if($("a.sez01-preventivo").length) {
        $("a.sez01-preventivo").fancybox({
            "padding": 4,
	        "width": 640,
		    "height": 420,
            "autoScale": false,
            "transitionIn": "elastic",
		    "transitionOut": "none",
    	    "type": "iframe",
            "overlayColor": "#000000"
	    });
    }

    //Fancybox sez02 info
    if($("a.sez02-info").length) {
        $("a.sez02-info").fancybox({
            "padding": 4,
	        "width": 640,
		    "height": 420,
            "autoScale": false,
            "transitionIn": "elastic",
		    "transitionOut": "none",
    	    "type": "iframe",
            "overlayColor": "#000000"
	    });
    }
});
