i'm using this script for IE:
<style type="text/css" media="screen, print">
.subfile {border:0;width:90%;border-collapse:collapse;}
.subfile td {cursor

ointer;font-family:Courier;font-size:.75em;font-weight:normal;padding-left:3px;color:#000000;
border:1px solid #D6DDE6;}
.subfile th{font-family:sans-serif;font-size:.75em;font-weight:bold;text-align:left;text-overflow: ellipsis;
padding-left:3px;border:1px solid #828282;border-color:threedhighlight threedshadow threedshadow threedhighlight;
background-image:url(/images/header-bg.gif);}
.subfile td.nav {background-color:menu;cursor:auto;border:0;margin:0;padding:0;}
.subfile tr.regrow {background-color:#FAFAFA;}
.subfile tr.altrow {background-color: #DFE7F2;}
.subfile tr:hover, .subfile tr.hilite {background-color:#0fD7E2;}
.subfile p, td, th {font: 0.8em Arial, Helvetica, sans-serif;}
</style>
<script language="JavaScript" type="text/javascript">
<!-- Table row's alternate color (Highlights row on museover - 'cuz IE sucks, not needed on Mozilla).
function subfileInit() {
var tables = document.getElementsByTagName('table');
for (var t=0; t<tables.length; t++) {
if ('subfile'==tables[t].className) {
var rows = document.getElementsByTagName('tr');
for (var i = 0; i < rows.length; i++) {
rows
.onmouseover = function() {
this.className += ' hilite';}
rows.onmouseout = function() {
this.className = this.className.replace('hilite', '');
}}}}}
// window.onload=subfileInit;
//-->
</script>
<body onload="subfileInit();">
<table class="subfile" align="center" CellPadding="0" CellSpacing="0" >
<tr>
<th scope="col">Victim's Name</th>
<th scope="col">Address</th>
<th scope="col">City</th>
<th scope="col" style="text-align:center">State</th>
<th scope="col">Zip</th>
</tr>
<tr class="regrow">
<td>Joe, Doe</td>
<td>2000 B. Glen Ave.</td>
<td>Baltimore</td>
<td style="text-align:center">MD</td>
<td>21111-4001</td>
</tr>
<tr class="altrow">
<td>Anonymous</td>
<td>346 E 17th St</td>
<td>New York</td>
<td style="text-align:center">NY</td>
<td>10001-5000</td>
</tr>
</table>