$(document).ready(function() {
	var h = 0;
	x = jQuery(".profile_info_item");
	x.each(
	function(intIndex)
		{
			if(x[intIndex].offsetHeight > h)
			{
				h = x[intIndex].offsetHeight;
				//alert(h);
			}
		}
	);
	x.each(
	function(intIndex)
		{
			$(x[intIndex]).height(h);
		}
	);
});