$(function(){
	// ---------------------------
	//	
	// ---------------------------

	// ---------------------------
	//	stripe pattern -table
	// ---------------------------
	$('div#main table tbody').addClass("stripePattern");
	// theadなし
	$('div#main table tbody:first-child > tr:nth-child(odd)').addClass("stripePattern-odd");
	$('div#main table tbody:first-child > tr:nth-child(even)').addClass("stripePattern-even");
	// theadあり
	$('div#main table thead + tbody > tr:nth-child(even)').addClass("stripePattern-odd");
	$('div#main table thead + tbody > tr:nth-child(odd)').addClass("stripePattern-even");

	// ---------------------------
	//	stripe pattern -faq
	// ---------------------------
	$('div#main dl.faq:nth-child(odd)').addClass("stripePattern-odd");
	$('div#main dl.faq:nth-child(even)').addClass("stripePattern-even");



});



