function initLogin() {
    if (document.getElementById("loginshown") != null && $(".css_loginstate") != null)
        if ($(".css_loginstate").html().indexOf("LOGOUT") > 0) {
            document.getElementById("loginshown").innerHTML = $(".css_loginstate").html();
        }
}

$(document).ready(function () {
    initLogin();

    $("table.heavy-aquis tbody tr:odd").addClass("odd");
    $("table.heavy-igss tbody tr:odd").addClass("odd");
    $("table.heavy-neutral tbody tr:odd").addClass("odd");
    $("table.heavy-termis tbody tr:odd").addClass("odd");
    $("table.light-neutral tbody tr:odd").addClass("odd");
    $("table.light-neutral tr th:last-child").css("border-right", "none");
    $("table.light-neutral tr td:last-child").css("border-right", "none");

});

