$(document).ready(function(){
	
	var primarycontent_height = $('#primarycontent').height();
	var secondarycontent_height = $('#secondarycontent').height();
	
	if(primarycontent_height > secondarycontent_height){
		$('#secondarycontent').css('min-height',(primarycontent_height-89));
	}
	else if(primarycontent_height < secondarycontent_height){
		$('#primarycontent').css('min-height',(secondarycontent_height-89));
	}
	
});