function onRowOver(t) {
        t.style.backgroundColor = '#0D70EA';
        t.onmouseout = function() {
                        t.style.backgroundColor = '';
        };
};