/*
 *
 * http://blog.jquery.com/2006/10/18/zebra-table-showdown/
 *
 */
 
jQuery(function ($) {
	/* You can safely use $ in this code block to reference jQuery */

$(document).ready(function() {

	$(".data-table > tbody tr:nth-child(odd)").addClass("odd");
	//$(".data-table tr:nth-child(even)").addClass("even");

});

});
