﻿$(document).ready(function () {

    //facebook
    FB.init("cae5ff8e11c89c9610268c9724b99253");

    //menu animation
    InvertColor();


});

//disable addthis on hover (leave only on click)
var addthis_config = {
    ui_click: true
}


var _CurrentColor = "";
function InvertColor() {

    _CurrentColor = _CurrentColor == "#FFFF00" ? "#99FF33" : "#FFFF00";
    $(".sidebar .animate a").animate({ color: _CurrentColor }, 2000, InvertColor);


}

function ShowPrivacy() {

    $("#privacy-text").dialog({
        autoOpen: false,
        modal: true,
        width: 600,
        height: 400,
        title: 'Trattamento dati personali',
        buttons: {
            "chiudi": function () {
                $(this).dialog("close");
            }
        }
    });

    $("#privacy-text").dialog('open');

}

function ShowImage(image, title) {
    $("#image-view img").attr("src", image);

    $("#image-view").dialog({
        autoOpen: false,
        modal: true,
        width: 700,
        height: 700,
        title: title
    });

    $("#image-view").dialog('open');

}