$(function() {
	$("#country-data, #country-items").tabs().show();

	var height = 0;
	$(".tab-item").each(function(){
		var tab_height = $(this).outerHeight();
		if (tab_height > height) {
			height = tab_height;
		}
	});
//	$(".tab-item").height(height);
});
