jQuery(function($) { var feedHeight = $( '.boxContent').height(); var profileHeight = $( '.boxContentProfile').height(); var colTwo = $( '#colTwoDouble' ).height(); var colTwoExtra = colTwo - 600; var feedExtra = feedHeight - 500; if( feedExtra > 0 ){ var newProfile = profileHeight + feedExtra; var newColTwo = colTwo + feedExtra; $( '.boxContentProfile').height( newProfile ); $( '#colTwoDouble').height( newColTwo ); } //alert( 'feed '+ feedHeight +' profile '+ profileHeight + 'feedtra '+feedExtra); });