var fpMod = Class.create();

fpMod.prototype = {	
	initialize : function(){
		Event.observe(window, "load", this.onLoadWindow.bindAsEventListener(this));
	},
	
	onLoadWindow: function(e){
		Array.max = function( array ){
		    return Math.max.apply( Math, array );
		};

		elemar = $$('.boxOut h2')
		ar = new Array();
		elemar.each(function(elem){
		    ar.push((elem.offsetHeight))
		})

		elemar.each(function(elem){
		    elem.style.height = ar.max()+'px';
		});
		
	}
	
}