
jQuery.fn.MV_evenHeight = function()
{

	/**
	  * Set initial height value to
	  * zero.
	  */
	var setHeight = 0;

	/**
	  * Find the highest of the matched
	  * elements
	  */
	this.each( function() {

		/**
		  * If higher than previous, set
		  * the new height.
		  */
		if ( $(this).height() > setHeight )
		{

			setHeight = $(this).height();
			
		}
		
	});

	/**
	  * Apply the new height to all matched
	  * elements.
	  */
	return this.each( function() {

		$(this).css("height", setHeight + "px");
		
	});
	
}

