var maxH = 0;
$(function(){
	maxH = $('#content').height();
	
	var $kids = $('.equal-height').children();
	
	$kids.each(function(){
		if($(this).height() > maxH)
		{
			$kids.css({'position':'absolute'});
			$(this).css({'position':'relative'});
		}
	});
});
