//-テーブルの自動ストライプ作成プログラム-
$(function() {
	$("tr:nth-child(odd)").css("background-color","#e6eff3");
	})
