﻿function GestioneBannerImmagine() {
    $('.adv-img').each(function (index) {
        if (($("A", this).length > 0) || ($("ins", this).length > 0)) {
            if (parseInt($(this)[0].clientHeight) > 10) {
                $(this).removeClass("height-0");
                $(".adv-no-bordo-bot", this).removeClass("nascosto");
            } else $(this).addClass("nascosto");
        } else $(this).addClass("nascosto");
    });
}

function GestioneBannerTestuali(IdBlocco) {
    var adv = false;
    var lastID = "";
    $('#' + IdBlocco + ' .adv-html').each(function (index) {
        if ($("A", this).length > 0) {
            $(this).removeClass("nascosto");
            lastID = $(this).attr('id');
            adv = true;
        }
    });
    if (adv) {
        $('#' + IdBlocco).removeClass("nascosto");
        $('#' + lastID).css("border-bottom-color", "transparent");
    }
}

function GestioneBannerLocaliNoBordo() {
    $('.adv-no-bordo').each(function (index) {
        if ((this.innerHTML.indexOf("ox_swf") != -1) || ($("A", this).length > 0)) {
            $(this).removeClass("height-0");
            $(".adv-no-bordo-bot", this).removeClass("nascosto");
        } else $(this).addClass("nascosto");
    });
}

