jQuery Equal Height Columns on Nested Elements

jQuery Equal Height Columns on Nested Elements

I have several .row elements structured like so:
  1. <div class="row row-even">
  2.                         <div class="container_12 content">
  3.                            
  4.                             <div class="grid_4 box">
  5.                                 <div class="content">
  6.                                    
  7.                                     <h3><a href="#">Corporate Transactional Services</a></h3>
  8.                                    
  9.                                 </div>
  10.                             </div>
  11.                            
  12.                             <div class="grid_4 box box-alt">
  13.                                 <div class="content">
  14.                                    
  15.                                     <h3><a href="#">Company Law</a></h3>
  16.                                    
  17.                                 </div>
  18.                             </div>
  19.                            
  20.                             <div class="grid_4 box">
  21.                                 <div class="content">
  22.                                    
  23.                                     <h3><a href="#">Mercantile Services</a></h3>
  24.                                    
  25.                                 </div>
  26.                             </div>
  27.                        
  28.                         </div>
  29.                     </div>

and I'm trying to use the equal height columns plugin to set the '.box > .content' divs so that they are the same size as the parent .row element.

Seeing as there are several .row elements on the page, I'm trying to get my script to cycle through each one:
  1. $('#page .row').each(function() {
  2.             $(this).find('.container_12, .row .box-alt > .content').equalHeightColumns();
  3.         });

But it doesn't seem to be working, the .container_12 element gets assigned a height of '0px'

Does anyone know what I'm doing wrong? Is it possible to use the plugin in this way?