// テーブル行色変え
$(document).ready(function(){
	// 偶数行にのみクラスを指定
	$('table.table_product tr:even').addClass('odd_product');
})