// table.tableStripe の偶数trに .evenRow を追加
function tableStripe() {
	$('table.tableStripe tr:even').addClass('evenRow');
}

$(tableStripe);

