$(document).ready(function() {
   	promoheight=100;
	
	if($('#homecol1').height() > promoheight){
		promoheight = $('#homecol1').height();
	}
	if($('#homecol2').height() > promoheight){
		promoheight = $('#homecol2').height();
	}
	col3Height=parseInt($('#homecol3').height())+229;

	if(col3Height > promoheight){
		promoheight = col3Height;
	}
	$('.homebottomcol').height(promoheight);
	$('#homecol3').height(promoheight-229);

});	
