﻿/* MOSTRA E NASCONDI I PDF */

function Pdf(blocco) {

    if (document.getElementById(blocco).getAttribute('class') == 'hide') {
        document.getElementById(blocco).setAttribute('class','show');
    }
    else {
        document.getElementById(blocco).setAttribute('class','hide');
    }
}

/* APRE IL POPUP DEL LINGOTTO */
function OpenCredits(url, title, attributes) {
    var winPopup = window.open(url, title, attributes);
    winPopup.focus();
    return false;
}

/* AVVIA LO SCORRIMENTO DELLE IMMAGINI */
(function($) {
    $(function() { //on DOM ready
        $("#scroller").simplyScroll({
            autoMode: 'loop'
        });
    });
})(jQuery);