jQuery.fn.equalizeCols = function() { 
 	var el, height = 0, h; 
 	var maxBottom = 0;
	this.each(function() { 
   el = jQuery(this).css("height", "auto"); 
   h = el.outerHeight(); 
	 b = el.offset();
	 bottom = h+b.top;
	 if (bottom>maxBottom)maxBottom = bottom;
 }); 

	this.each(function() { 
   el = jQuery(this).css("height", "auto"); 
   h = el.outerHeight(); 
	 b = el.offset();
	 bottom = h+b.top;
	 if(bottom<maxBottom) {
	 	diff = maxBottom - bottom;
	 	jQuery(this).append('<div style="height:'+diff+'px"></div>');
	 }
	 });
}; 

