$(function(){
	function maxH() {
		var maxheight = 0;
		$(".con3 .info").each(function() {
			if(maxheight < $(this).height()) {maxheight = $(this).height();}
		});
		$(".con3 .info").css({"height": maxheight + "px"});
	}
	maxH();
})
