jQuery.fn.evenHeight = function(delta) {
	var elementCount = $(this).size();
	if(elementCount > 0)
	{
		var maxVal = 0;
		$(this).each(function(){
			if($(this).height() > maxVal)
			{
				maxVal = $(this).height();
			}
		});
		if(delta)
		{
			maxVal += delta;
		}
		$(this).each(function(){
			$(this).height(maxVal);
		});
	}
};

