$(function() {

	// Apply zebra-striping to table
	
	$('tr:even').addClass('zebra');
	
});
