function initRowHighlighting(){if(!document.getElementsByTagName){return }var B=getElementsByClass("highlightTable",document,"table");for(var A=0;A<B.length;A++){var C=B[A];attachRowMouseEvents(C.getElementsByTagName("tr"))}}function attachRowMouseEvents(B){for(var A=0;A<B.length;A++){var C=B[A];if(A%2==1){C.onmouseover=function(){addClass(this,"highlight")};C.onmouseout=function(){removeClass(this,"highlight")}}else{C.onmouseover=function(){addClass(this,"highlightAlt")};C.onmouseout=function(){removeClass(this,"highlightAlt")}}}}addLoadEvent(initRowHighlighting)