add the code you mentioned before the doctype tag:
<?php
//WA AltClass Iterator
class WA_AltClassIterator {
var $DisplayIndex;
var $DisplayArray;
function WA_AltClassIterator($theDisplayArray = array(1)) {
$this->ClassCounter = 0;
$this->ClassArray = $theDisplayArray;
}
function getClass($incrementClass) {
if (sizeof($this->ClassArray) == 0) return "";
if ($incrementClass) {
if ($this->ClassCounter >= sizeof($this->ClassArray)) $this->ClassCounter = 0;
$this->ClassCounter++;
}
if ($this->ClassCounter > 0)
return $this->ClassArray[$this->ClassCounter-1];
else
return $this->ClassArray[0];
}
}
?>
<?php
//WA Alternating Class
$WARRT_AltClass1 = new WA_AltClassIterator(explode("|", "|WADAResultsRowDark"));
?>
between the <?php do { ?> tag at line 319 and the <?php } while ($row_WADAtbl_post = mysql_fetch_assoc($WADAtbl_post)); ?> tag at line 392, find each <tr> tag and checkge them to:
<tr class="<?php echo($WARRT_AltClass1->getClass(true)); ?>">
and add the following css to the page:
.WADAResultsRowDark {
color:table;
background-color: #E5E5E5;
}