// Animation Topimages　トップイメージ　----------------------------------------
function flatColumns(flatColum,columNum,notTag){



$(flatColum).parent().each(function(){

	var sets = [], temp = [];

	if(columNum == 2){

		$(this).children().not(notTag).each(function(i){

			temp.push(this);


			if ((i+1)%2 == 0 && i!=0){

				sets.push(temp);

				temp = [];

			}

		});



		if (temp.length) sets.push(temp);

	}else if(columNum == 3){

		$(this).children().not(notTag).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();

	});

});

}
