function resize_m(){
	if($(".group_left").height()<=$(".group_right").height()){
		height_needed=$(".group_right").height();
		$("#main_txt").height(height_needed);
	}
	if($(".group_left").height()>$(".group_right").height()){
	
		height_needed=$(".group_left").height();
		height_right=$(".group_right").height()-$("#group_type").height();
		$("#group_type").height(height_needed-height_right-1+10);
		$("#main_txt").height($(".group_right").height()-20);
	}

	h=$(".pp_right").height();
	h2=$(".pp_right2").height();
	if(h<1){
		h=h2;
	}else{
		h=h+1;
	}
	if($(".pp_left").height()<h){
		$(".pp_left").height(h-1);
	}
	else{
		$(".pp_right").height($(".pp_left").height());
		$("#new_main").height($(".pp_left").height()-10);
		$("#new_main2").height($(".pp_left").height()-46);
	}
	if($("#photo_sp").height()>0)
		$(".pp_left").height(156);
}

