/*-------------------------------------------------------------------- 
 * JQuery Plugin: "EqualHeights"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Description: Compares the heights or widths of the top-level children of a provided element 
 		and sets their min-height to the tallest height (or width to widest width). Sets in em units 
 		by default if pxToEm() method is available.
 * Dependencies: jQuery library, pxToEm method	(article: 
		http://www.filamentgroup.com/lab/retaining_scalable_interfaces_with_pixel_to_em_conversion/)							  
 * Usage Example: $(element).equalHeights();
  		Optional: to set min-height in px, pass a true argument: $(element).equalHeights(true);
 * Version: 2.0, 08.01.2008
--------------------------------------------------------------------*/

jQuery.fn.equalHeights = function(px) {
	jQuery(this).each(function(){
		/* Set image height */
		var currentTallest = 0;
		jQuery(this).find('.myshp_list_product_image_box').each(function(i){
			if (jQuery(this).height() > currentTallest) { currentTallest = jQuery(this).height(); }
		});
		jQuery(this).find('.myshp_list_product_image_box').css({'height': currentTallest});

		/* Set body height */
		currentTallest = 0;
		jQuery(this).find('.myshp_list_product_body').each(function(i){
			if (jQuery(this).height() > currentTallest) { currentTallest = jQuery(this).height(); }
		});
		jQuery(this).find('.myshp_list_product_body').css({'height': currentTallest});

		/* Set header height */
		currentTallest = 0;
		jQuery(this).find('.myshp_list_product_title').find('.myshp_list_product_border_top_corner_right').each(function(i){
			if (jQuery(this).height() > currentTallest) { currentTallest = jQuery(this).height(); }
		});
		jQuery(this).find('.myshp_list_product_title').find('.myshp_list_product_border_top_corner_right').css({'height': currentTallest});
	});
	return this;
};
