// JavaScript Document
$( function () {
	var listHeight = 0;
	$(".B_footer_link-service > .B_footer_list-service").each ( function () {
		if ($(this).height() > listHeight )
		listHeight = $(this).height();
	});
	$(".B_footer_link-service > .B_footer_list-service").each ( function () {
		$(this).height(listHeight);
	});
});
