// 新着情報サムネイル高さfix
$(function() { 
	var h = 0;
	var ele = '#smallPh > dl';
	$(ele).each(function() { 
		h = Math.max(h, $(this).height());
	});
	$(ele).height(h);
});




