$(document).ready(function() {

	var sidebarHeight = $('#sidebar-content').height();
	var contentHeight = $('#inner-body-copy').height();
	
	if(contentHeight > sidebarHeight) {
		$('#sidebar-content').css('height', contentHeight);
	} else {
		$('#inner-body-copy').css('height', sidebarHeight);
	}

});
