function seoPos(){
	seoHeight = $("#seo").height();
	mcHeight = $("#mc").height();
	rcHeight = $("#rc").height();
	newHeight = mcHeight + seoHeight;
	
	if(newHeight > rcHeight){
		$("#rc").height(newHeight);
	}
	
	thisPos = $("#placer").position();
	$("#seo").css("top",thisPos.top);
}
