ppl.handpresso = {

	init: function() {
	
		$(window).load(function(){
			ppl.handpresso.setEqualHeight($('.equal-height'));
		});
	
	},
	
	setEqualHeight: function(columns) {
		var tallestcolumn = 0;
		columns.each(
			function() {
				currentHeight = $(this).height();
				if(currentHeight > tallestcolumn) {
					tallestcolumn  = currentHeight - 1;
				}
			}
		);
		columns.height(tallestcolumn);
	}

}

jQuery(document).ready(function() {
    ppl.handpresso.init();
});
