// <![CDATA[

// #################################################################
// Version 1.0
// #################################################################
	
$A(document.getElementsByTagName("table")).each(function(table){
  $A(table.getElementsByTagName("tr")).each(function(row,i){
    if ( i % 2 == 1 ) {
      Element.addClassName( row, "odd" );
	 } else {
		Element.addClassName( row, "even" );
	}
  });
});
// ]]>
