$(function ()
{
	$("#tabbox li:nth-child(odd)").addClass("odd");
	$("#tabbox li:nth-child(even)").addClass("even");
//:first-child, :last-childをクラスとして追加
	$('p:first-child').addClass('firstChild');
	$('p:last-child').addClass('lastChild');
	
});

