$j(document).ready(function(){
	if($j('.bottom-block-item-first-content').height() < 184){
				$j('.bottom-block-item-first-content').height(184);
			}
			if($j('.bottom-block-item-second-content').height() < 96){
				$j('.bottom-block-item-second-content').height(96);
			}
			if($j('.bottom-block-item-third-content').height() < 145){
				$j('.bottom-block-item-third-content').height(145);
			}
			
			var footerBlock1 = $j('.bottom-block-item-first').height();
			var footerBlock2 = $j('.bottom-block-item-second').height();
			var footerBlock3 = $j('.bottom-block-item-third').height();
			
			var footerBlockHeight = 0;
			var extraWhitespace = 0;
			
			if(footerBlock1 > footerBlockHeight){
				footerBlockHeight = footerBlock1;
				extraWhitespace = 30;
			}
			if(footerBlock2 - 30 > footerBlockHeight){
				footerBlockHeight = footerBlock2;
				extraWhitespace = 0;
			}
			if(footerBlock3  - 12 > footerBlockHeight){
				footerBlockHeight = footerBlock3;
				extraWhitespace = 18;
			}
			
			$j('.bottom-block-inner').height(footerBlockHeight + extraWhitespace);
});
