
$(document).ready(function() {
    if ($(".contenuto").length && $("#blocco_sx").length && !($(".no_height").length)){
        if ($(".header").length) {
            $(".contenuto").css({
                'min-height': ($("#blocco_sx").height() - 87) + 'px'
            });
        }
        else{
            $(".contenuto").css({
                'min-height': ($("#blocco_sx").height() - 22) + 'px'
            });
        }
    }
});
