$(window).load(function() {
	/*コンテンツ一覧の高さをすべて統一する*/
	var maxHeight = 0;
	$('#contentslist ul li').each(function(){
		if($(this).height() > maxHeight){
			maxHeight = $(this).height();
		}
	});
	$('#contentslist ul li').each(function(){
		$(this).height(maxHeight);
	});
});

