﻿$(document).ready(function() {
	$("table.striped tr:even").each(function() {
		$(this).addClass("even");
		$(this).find("td").each(function() {
			if ($(this).hasClass("featured"))
				$(this).addClass("featured-even");
		});
	});
});