window.addEvent('domready', function() {
	$$('tbody tr:nth-child(2n-1)').each(function(element) {
		element.addClass('alt');								
	});
});