function _hover(obj, col) { if(!obj) return; pb = obj.style.backgroundColor; obj.style.backgroundColor = (col ? col : '#ddeeff'); obj.onmouseout = function() { obj.style.backgroundColor = pb; }  }