(function($)
{$.fn.equalHeightColumns=function(options)
{var height,elements;options=$.extend({},$.equalHeightColumns.defaults,options);height=options.height;elements=$(this);$(this).each
(function()
{if(options.children)
{elements=$(this).children(options.children);}
if(!options.height)
{if(options.children)
{elements.each
(function()
{if($(this).height()>height)
{height=$(this).height();}});}
else
{if($(this).height()>height)
{height=$(this).height();}}}});if(options.minHeight&&height<options.minHeight)
{height=options.minHeight;}
if(options.maxHeight&&height>options.maxHeight)
{height=options.maxHeight;}
elements.animate
({height:height},options.speed);return $(this);};$.equalHeightColumns={version:1.0,defaults:{children:false,height:0,minHeight:0,maxHeight:0,speed:0}};})(jQuery);

