$.fn.sameHeight = function() {  
	var max = 0;
	this.each(function() {  
		if ($(this).height() > max) { max = $(this).height(); }
	});
	this.css({'height':max});
}; 
