/*!
 * Equal Heights Plugin
 * Version 1.0.0
 *
 * Copyright © 2009,2010 David Young & Cape Fear Webmasters, Inc.
 * http://www.cfwebmasters.com/
 * http://dcyoung.com/
 * Released under the GNU GPL Version 2 license.
 * 
 */
;(function($){jQuery.fn.cfwiEqualHeights=function(outer,margins){var m_maxheight=0,m_outerheight=typeof(outer)==='boolean'?outer:false;m_margins=typeof(margins)==='boolean'?margins:false;this.each(function(){var $item = jQuery(this);m_maxheight = Math.max((m_outerheight)?$item.outerHeight(m_margins):$item.height(),m_maxheight);});return this.each(function(){var $a=jQuery(this);$a.height(m_maxheight);});}})(jQuery);
