﻿
function ie6Rollovers(){
    /*var topMenu = document.getElementById("MainMenu");
    var isIE6 = true;//(navigator.appVersion.indexOf("MSIE 6.")>-1 || navigator.appVersion.indexOf("MSIE 5.")>-1);
    if(isIE6){
        for(i=0;i<topMenu.rows[0].cells.length;i++){
            if(topMenu.rows[0].cells[i].className.indexOf("top_menu")>-1){
                var cell = topMenu.rows[0].cells[i];
                cell.onmouseout = "this.style.background='#5d5d5d';this.style.color='White';";
                cell.onmouseover = "this.style.cursor='pointer';this.style.background='#cccccc';this.style.color='Black';";
            }
        }
    }*/
}