$(document).ready(function() {
	
	// equalize home article height
	max = 0;
	$('#home article').each(function() {
		hi = $(this).outerHeight();
		if (hi > max) {max = hi;};	
	});
	$('#home article').height(max);

});

