﻿function tabConfig() {
    try {
        $(".colTabs").tabs({
            load: function (event, ui) {
                $('a', ui.panel).click(function () {
                    $(ui.panel).load(this.href);
                    return false;
                });
            }
        });
        //remove dynamic style application
        $(".colTabs").removeClass('ui-widget-content ui-widget');
        $(".colTabs ul#tabs").removeClass('ui-widget-header ui-corner-all ui-helper-reset ui-helper-clearfix');
        $(".colTabs ul#tabs li").removeClass('ui-corner-top');
        $(".colTabs #rColContent div").removeClass('ui-widget-content ui-corner-bottom'); /**/
    }
    catch (e) {alert(e); }
}
