/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(function(){
	var maxHeight = 0;
	$('ul#accommodation_puffs li.equal div.terrain').each(function(){
		if (maxHeight < $(this).height()) {maxHeight = $(this).height()}
	});
	$('ul#accommodation_puffs li.equal div.terrain').each(function(){
		$(this).height(maxHeight);
	});

	$('ul#accommodation_puffs li.equal p.overview').each(function(){
		if (maxHeight < $(this).height()) {maxHeight = $(this).height()}
	});
	$('ul#accommodation_puffs li.equal p.overview').each(function(){
		$(this).height(maxHeight);
	});

});

