// JavaScript Document


$(document).ready(function(){
	 
	
	var colOneLargeHeight = $('.colOneLarge').height();
	$('#rowTwo .colThree').height(colOneLargeHeight + 100);
	var colTwoHeight = $('#rowThree .colTwo').height();
	$('#rowThree .colOne').height(colTwoHeight);
	$('#rowThree .colThree').height(colTwoHeight);

});




