/*
//CON PROTOTYPE
document.observe("dom:loaded", function() {

	//encebramos todas las tablas
	$$('.entry table tr').each(
		function(el, count) {
			el.addClassName(count % 2 == 0 ? 'odd' : 'even');
		}
	);
});
*/

//CON JQUERY
jQuery(function(){
	jQuery('.entry table tr:odd').addClass('odd');
	jQuery('.entry table tr:even').addClass('even');
});