jQuery(document).ready(function() { 
	var whiteBox = jQuery('#white_text_block').height();
	//console.log('whiteBox: ' + whiteBox)
	if(whiteBox < 601) {
		whiteBox = 601;
		jQuery('#white_text_block').css('min-height', whiteBox);
	} else {
		whiteBox = whiteBox;
}
	//console.log('here: ' + whiteBox);
	var mainBottom = whiteBox + 400;
	var spacer = whiteBox - 408;
	jQuery('#main_bottom').css('top', mainBottom);
	jQuery('#bottomSpacer').css('top', spacer);
});//end document ready
