Hi
I have this code of zebra stripes.
<style type="text/css">
<!--
.paint {background: #caf2fe;}
-->
</style>
<script type="text/javascript">
$(document).ready(function(){
$("tr:odd").addClass("paint");
});
</script>
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>Text1</td>
</tr>
<tr>
<td>Text1 details</td>
</tr>
<tr>
<td>Text2</td>
</tr>
<tr>
<td>Text2 details</td>
</tr>
<tr>
<td>Text3</td>
</tr>
<tr>
<td>Text3 details</td>
</tr>
</table>
how can i change every 2 rows the background color?