$(document).ready(function(){
	// Make background equal in size to wrapper div. Note: its quick fix
	$('#background-fill').height($('#wrapper').height());
	
	// Make introductory spacer equal in size to content-left divisor
	// -18 is the gap for the margin
	$('#intro-spacer').height($('#content-left').height()-18);
});

