function highlightRows() {
  if(!document.getElementsByTagName) return false;
  var rows = document.getElementsByTagName("tr");
  for (var i=0; i<rows.length; i++) {
    rows[i].onmouseover = function() {
      this.style.backgroundColor = "#D9E5EF";
    }
    rows[i].onmouseout = function() {
      this.style.backgroundColor = "";
    }
  }
}
addLoadEvent(highlightRows);