$(function() {
	zebra_stripe_table();
      });
      
var zebra_stripe_table = function() {
        $("table tr:nth-child(even)").addClass("striped");
		$("tr:nth-child(odd)").addClass("odd");
};