// JavaScript Document

  jQuery.fn.equalCols = function(){
    var sortNumber = function(a,b){return b - a;};
    var heights = [];
    $(this).each(function(){
      heights.push($(this).height());
    });
    heights.sort(sortNumber);
    var maxHeight = heights[0];
    return this.each(function(){
      $(this).css({'height': maxHeight});
    });
  };
	
  $(document).ready(function() {
    $('div.column').equalCols();															 
  });
