// application/javascript
// 2007 Daniel Brumbaugh Keeney
// Public Domain

Event.attach(window,'load',function (){
  tables=document.getElementsByTagNameNS('http://www.w3.org/1999/xhtml','table')
  tables.each(function(t){
    var i, odd = true;
      for (i=0; i<t.rows.length; i++) {
        t.rows[i].className += odd ? ' odd' : ' even';
        odd = !odd;}})})


