/**
 * Plugins jQuery Heliopsis
 */
(function($, undefined){
	/**
	 * fixe la plus grande hauteur à tous les éléments
	 */
	$.fn.helioEqualHeight = function(){
		var h = 0;
		this.each(function(){
			if($(this).height() >= h) h = $(this).height();
		})
		this.each(function(){
			$(this).height(h);
		})		
	}

})(window.jQuery);
