//カラムの高さを揃える
function setEqualHeight(columns){
	var tallestcolumn = 0;
	columns.each(
		function(){
			currentHeight = $(this).height();
			if(currentHeight > tallestcolumn){
				tallestcolumn  = currentHeight;
			}
		}
	);
	columns.height(tallestcolumn);
}
$(document).ready(function() {
	setEqualHeight($("#shoplist > ul  > li"));
	setEqualHeight($("#shoplist2 > ul  > li"));
	setEqualHeight($("#bloglist > ul  > li"));
	setEqualHeight($("#ranklist > ul  > li"));	
});


