/**
Alternate table rows for browsers that don't support css3
*/
$(document).ready(function(){
	$('table.report tr:odd').addClass('alt');
});

