swfobject.embedSWF(
"swf/topfla.swf","flash","930","449","8.0.0","expressInstall.swf",{},{wmode:"transparent"},{devicefont:"false"}
);

$(function(){
$('#contentsCol #news .item:last').addClass('itemLast');
$('#contentsCol #event .item:last').addClass('itemLast');
});



$(function(){
	$("#contentsCol #event .item:nth-child(3n)").addClass('item3n');
	/* div要素を3つずつの組に分ける */
	var sets = [], temp = [];
	$('#contentsCol #event .item').each(function(i) {
		temp.push(this);
		if (i % 3 == 2) {
		sets.push(temp);
		temp = [];
	}
	});
	if (temp.length) sets.push(temp);
	/* 各組ごとに高さ揃え */
	$.each(sets, function() {
		$(this).flatHeights();
	});
});
