$(document).ready(function() { 

	$('table#sermons tbody > tr:odd').addClass('odd');
	$('table#sermons tbody > tr:even').addClass('even');
	
	$("table#sermons > tbody > tr").hover( function() {
		$(this).addClass("highlight");
	}, function() {
		$(this).removeClass("highlight");
	});
    
});
