// http://15daysofjquery.com/examples/zebra/

$(document).ready(function(){
	//JQuery ready is quicker than onload
	$(".table-altrow tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".table-altrow tr:odd").addClass("tr-alt");
});
