$(function() {
	// ホットライン商品一覧(人気メニュー)の1行(4商品)ごとをdivでまとめる
	$(".hotline_shop_menu .hotline_menu_contener:nth-child(4n)").each(function() {
		var menuContainer = $(".hotline_shop_menu .hotline_menu_contener");
		var endIndex = menuContainer.index(this) + 1;
		return menuContainer.slice(endIndex - 4, endIndex).wrapAll("<div class=\"clearFix\"></div>");
	});

	var maxHeight = 0;
	$("#check_shop .hotline_shop_list").each(function(){
		maxHeight = Math.max(this.offsetHeight, maxHeight);
	});
	$("#check_shop .hotline_shop_list").css('height', maxHeight + 'px');
});

