function onRowOver(t) {
        t.style.backgroundColor = '#96d3ff';
        t.onmouseout = function() {
                        t.style.backgroundColor = '';
        };
};