<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{}</title>
<script type="text/javascript" src="./mootools-1.2.js"></script>
<script>
//------------------------------------------------------------- mootools code
window.addEvent('domready' , function(){
$$('tr:odd').addClass('odd');
$$('tr:even').addClass('even');
});
//------------------------------------------------------------ /mootools code
</script>
</head>
<style>
.odd{ background-color:#D7EACE;}
.even{ background-color:#F5F5F5;}
</style>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>a</th>
</tr>
<tr>
<td>b</td>
</tr>
<tr>
<td>c</td>
</tr>
<tr>
<td>d</td>
</tr>
<tr>
<td>e</td>
</tr>
</table>
</body>
</html>