
	$(window).load(function() {

		var maxHeight = Math.max($('#navigation').height(), Math.max($('#content').height(), $('#features').height()))

		$('#navigation').height(maxHeight + 60 + 'px');
		$('#content').height(maxHeight + 'px');
		$('#features').height(maxHeight + 2 + 'px');

	});