$(document).ready(function(){
    // Kz.M - Contact Visore Mappe
    $('.link-sede-map').click(function(){
        if($(this).hasClass('rome')) {
            $(this).removeClass('rome').addClass('casablanca');
        } else {
            $(this).removeClass('casablanca').addClass('rome');
        }
        
        var t = $(this);
        var id=0;

        if($('.container-work').css('margin-top') == '-'+($('.container-work').height()-427)+'px') {
            
        } else {
            t.fadeOut('fast');

            if($('.container-work').css('margin-top') == '-427px') {
                $('#bg-container-contact2').animate({'opacity':'0'},800);
                id = 1;
                $('.container-work').animate({
                    'margin-top': '+=427'
                },{
                    duration: 800,
                    easing: 'easeInOutBack',
                    complete: function(){
                        t.fadeIn();
                    }
                });
            } else 

            if($('.container-work').css('margin-top') == '0px') {
                $('#bg-container-contact2').animate({'opacity':'1'},800);
                id = 2;
                $('.container-work').animate({
                    'margin-top': '-=427'
                },{
                    duration: 800,
                    easing: 'easeInOutBack',
                    complete: function(){
                        t.fadeIn();
                    }
                });
            }

        }
        return false;
    });
});
