Index: homebox.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/homebox/homebox.js,v
retrieving revision 1.1.4.49.2.2
diff -u -F '^f' -r1.1.4.49.2.2 homebox.js
--- homebox.js	2 Feb 2011 19:23:50 -0000	1.1.4.49.2.2
+++ homebox.js	16 Feb 2011 22:12:33 -0000
@@ -84,15 +84,9 @@
   Drupal.homebox.equalizeColumnsHeights = function () {
     var maxHeight = 0;
     Drupal.homebox.$columns.each(function () {
-      if ($(this).parent('.homebox-column-wrapper').attr('style').match(/width: 100%/i)) {
-        $(this).height('auto');
-        maxHeight = Math.max($(this).height(), maxHeight);
-      }
-    }).each(function () {
-      if ($(this).parent('.homebox-column-wrapper').attr('style').match(/width: 100%/i)) {
-        $(this).height(maxHeight);
-      }
-    });
+      $(this).height('auto');
+      maxHeight = Math.max($(this).height(), maxHeight);
+    }).height(maxHeight);
   };
 
   Drupal.homebox.maximizeBox = function (icon) {
