$(function ()
{
	$("li:nth-child(odd)").addClass("odd");
	$("li:nth-child(even)").addClass("even");
	$(".bn_box a:nth-child(odd)").addClass("odd");
	$(".bn_box a:nth-child(even)").addClass("even");
//:first-child, :last-child
	$('li:first-child').addClass('firstChild');
	$('li:last-child').addClass('lastChild');
	$('.bn_box a:first-child').addClass('firstChild');
	$('.bn_box a:last-child').addClass('lastChild');
	$('.cms ul:last-child').addClass('lastChild');
});

