// JavaScript Document

$(document).ready(function(){
	
	// 編みかけテーブルクラス
	$("table.tableStripe").each(function(){
		$("tr:odd", this).addClass("odd");
	});

	// h2 が登場するごとにh3 のクラスを切り替え。
	// h31 〜 h36
	var i = 0;
	$("h2, h3").each(function(){
		if (! $(this).is(".noauto")) {
			$(this).addClass("h2h3");
		}
	});
	$(".h2h3").each(function(){
		if ($(this).is("h2")) {
			i = ( i % 6 ) + 1;
		} else { // h3
			$(this).addClass("h3" + i);
		}
	});

});

