/**
* @version $Id: jquery.thumbheight.js 41290 2010-10-04 15:35:07Z dimitar $
*/

(function($){
	jQuery.fn.thumbheight = function() {
 		var tallest = 0;
		this.children().each(function() {
			if ($(this).outerHeight() > tallest) {
				tallest = $(this).outerHeight(); 
			}
		});
		jQuery(this).children().height(tallest);
	};
})(jQuery); 
