﻿Type.registerNamespace('casapadova.widgets.operators');

casapadova.widgets.operators.showTab = function(tabId) {
    $(".divservizi").hide();
    $("#divtab" + tabId).fadeIn("fast", function() {
        if ($.browser.msie)
            this.style.removeAttribute('filter');
    });
    $(".tabservizi img").each(function() {
        var id = $(this).attr("id");
        if (id == "imgtab" + tabId)
            $(this).attr("src", "/Content/Images/" + id + "_on.gif");
        else
            $(this).attr("src", "/Content/Images/" + id + "_off.gif");
    });
};