/*
 * Zebra stripe tables automatically.
 * 
 * Ignore tables with a class of "layout" and TR elements with a class of
 * "browse", "highlight" or "odd".
 */
$(document).ready(function() {
	$('table[class!=layout] tr[class!=browse][class!=highlight]:nth-child(even)').addClass('even');
	$('table[class!=layout] tr[class!=browse][class!=highlight]:nth-child(odd)').addClass('odd');
});

