function ccbnIE6TurnHoversOn() {
    if (document.all) {
        var divs = document.getElementsByTagName("div");
        var tables = document.getElementsByTagName("table");
        var hoverEnabled = new Array("ccbnCalButton", "ccbnDay");
        for (ccbn_i = 0; ccbn_i < divs.length; ccbn_i++) {
            if (divs[ccbn_i].id.indexOf("month") != -1) {
                var tds = divs[ccbn_i].getElementsByTagName("td");
                for (ccbn_j = 0; ccbn_j < tds.length; ccbn_j++) {
                    for (ccbn_k = 0; ccbn_k < hoverEnabled.length; ccbn_k++) {
                        if (tds[ccbn_j].className.indexOf(hoverEnabled[ccbn_k]) != -1) {
                            tds[ccbn_j].onmouseover = function () {ccbnAddClass(this, ccbnHiliteSuffix);};
                            tds[ccbn_j].onmouseout = function () {ccbnRemoveClass(this, ccbnHiliteSuffix);};
                        }
                    }
                }
            }
        }
        for (ccbn_i = 0; ccbn_i < tables.length; ccbn_i++) {
            if (tables[ccbn_i].className.indexOf("ccbnRowHoverTbl") != -1) {
                var trs = tables[ccbn_i].getElementsByTagName("tr");
                for (ccbn_j = 0; ccbn_j < trs.length; ccbn_j++) {
                    if (trs[ccbn_j].className.indexOf("ccbnBgTblTtl") == -1) {
                        trs[ccbn_j].onmouseover = function () {ccbnAddClass(this, ccbnHiliteSuffix);};
                        trs[ccbn_j].onmouseout = function () {ccbnRemoveClass(this, ccbnHiliteSuffix);};
                    }
                }
            }
        }
    }
}
