// alternate table row colours


$(document).ready(function() {
$('table tbody tr:odd').addClass('odd');
$('table tbody tr:even').addClass('even');
});