function wantBg() {
	rbh = $("#publicationLeft").height();
	lh = $("#publicationRightContent").height();
	if(lh<rbh) {
		seth = rbh+"px";
		$("#publicationRightContent").height(seth);
	}
}

$(document).ready(function() {
	more("frozen");
	wantBg();
});