$(document).ready(function() {
	$('.article table.stripe').each(function(){
		$('tbody tr:odd').addClass('alt');
	});
});