//for index
function caseListSetting() {
	$(".event-wrap")
	.find(".event:nth-child(3n)")
		.addClass("last")
	.end()
	.find(".event")
		.find(".img")
			.find("img")
				.imgTrim(189,117,true)
			.end()
			.find("a")
				.filter(function(){
					return $(this).attr("href").match(/\.(gif|png|jpg|GIF|PNG|JPG)$/);
				})
					.lightBox()
				.end()
			.end()
		.end()
		.find(".event-in")
			.flatheightsSet(3);
}

