// JavaScript Document

  <!-- color the odd rows of every zebra table on the page -->
  
    $(document).ready( function() {
      $("table.tableizer-table").find("tr:nth-child(even)").each(
        function(i) {
          if( 0 == $(this).find("th").length ) {
            $(this).addClass("even");
          }
        }
      );
    } );
  

