jQuery.fn.equalHeights = function() {
return this.height(Math.max.apply(null,
this.map(function() {
				  $(this).css('background','#f7f7f7');
return jQuery(this).height()
}).get()
));
};
