jQuery(document).ready(function() {

	if ( jQuery('#primary').height() < jQuery('div#secondary').height() + 50 ) {
		jQuery('#primary').height( jQuery('div#secondary').height() + 50 );
	};

});
