$(document).ready(function() {
// resize boxes so they line up
	promoheight=100;
	thedif=$('#homebannercontainer').height()+10;
	col1=$('#homecol1').height() + thedif;
	col2=$('#homerightcol').height();
	if(col1 > promoheight){promoheight = col1;}
	if(col2 > promoheight){promoheight = col2;}

	$('#homecol1').height(promoheight-thedif);
	$('#homerightcol').height(promoheight);
});	
