$(document).ready(function(){
	
	var sameHeight = Math.max($('.block h3').height(),$('.block.last h3').height());
	$('.block h3').height(sameHeight);
	
	var sameHeight2 = Math.max($('.block p').height(),$('.block.last p').height());
	$('.block p').height(sameHeight2);
	
});
