﻿// ID = UserControl ID + Element ID

function incidentsOver(i) {
    var e = document.getElementById("NiIncidents_incidentGrid");
    for (k=1; k<=7; k++)
        e.rows[i].cells[k].style.backgroundColor = "#c7c7c7";
    e.rows[i].style.cursor = "pointer";
}

function incidentsOut(i) {
    var e = document.getElementById("NiIncidents_incidentGrid");
    for (k=1; k<=7; k++) {
        if (e.rows[i].className == "incidentGridSelected")
            e.rows[i].cells[k].style.backgroundColor = "#c5cccd";
        else
            e.rows[i].cells[k].style.backgroundColor = "#fff";
    }
    e.rows[i].style.cursor = "default";
}