﻿
Sys.Application.add_init(appl_init);

function appl_init() {
    var pgRegMgr = Sys.WebForms.PageRequestManager.getInstance();

    pgRegMgr.add_pageLoaded(function () {
        $(".customStyleSelectBox").each(function () {
            if ($(this).attr("disabled")) {

                $(this).removeClass('customStyleSelectBox');
                $(this).addClass('customStyleSelectBox2');
            }
        });

        $(".customStyleSelectBox2").each(function () {
            if (!$(this).attr("disabled")) {

                $(this).removeClass('customStyleSelectBox2');
                $(this).addClass('customStyleSelectBox');
            }
        });


        $(".customStyleSelectBox").customStyle();
        $(".customStyleSelectBox2").customStyleDisabled();


        fixHoverRodape();
    });


}
