Mine also has vBSEO rewritten URLs, so it's a bit diff. I may post it later when I clean it up some more.
BTW if anyone wants alternating rows, here is an easy way to accomplish it.
--
In va_spy.js find
Code:
function spyinit() {
Above it, add
Code:
var rowClass = 'alt2';
Find
Code:
highestid = Math.max(parseInt(spyid), highestid);
above it, add
Code:
rowClass = rowClass == 'alt2' ? 'alt1' : 'alt2';
Find
For every <td> (with or without a class="alt1" or "alt2") make it
Code:
<td class="' + rowClass + '">
Remember that some of the cells have alignment set, so be sure to keep that intact.