
$(document).ready(function(){
	//Find tallest section and make others match
	var heightOne = $('#wrapper #content .inside section').eq(0).height();
	var heightTwo = $('#wrapper #content .inside section').eq(1).height();
	var heightThree = $('#wrapper #content .inside section').eq(2).height();
	var heightFour = $('#wrapper #content .inside section').eq(3).height();
	var heightFive = $('#wrapper #content .inside section').eq(4).height();
	
	var firstRowHeight = Math.max(heightOne, heightTwo, heightThree);
	$('#wrapper #content .inside section:lt(3)').css('height', firstRowHeight);
	var secondRowHeight = Math.max(heightFour, heightFive);
	$('#wrapper #content .inside section').eq(3).css('height', secondRowHeight);
	$('#wrapper #content .inside section').eq(4).css('height', secondRowHeight);
});

