(function($)
{
	$.fn.equalize = function()
	{
		var me = $( this );
		
		function setEqualHeight()
		{
			var tallestColHeight = 0;
			var currentColHeight = 0;
			
			me.each( function( i, e )
			{
				currentColHeight = $( e ).height();
				if ( currentColHeight > tallestColHeight )
				{
					tallestColHeight = currentColHeight;
				}
			});
			me.height( tallestColHeight );
		}
		
		$( window ).load(function() 
		{
			setEqualHeight();
		});
	}
})(jQuery)
