
jQuery(function($){
	
	window.onload = function(){
	
		// Align all the sizes of the opportunity summary paragraphs
		var max = 0;
		
		// Loop through the items
		$('.opportunity p.summary').each(function(i){
			if ( !max || max.height() < $(this).height() ) 
	    	max = $(this);
		});
		
		$('.opportunity p.summary').height(max.height());
	
	};
	
});