// Copyright mydot.com.cn
// 14:39 2009-11-04
// by threecups
// Contact with me mailto shengjun2004080@qq.com
//****************************************************************//
function autoHeight(){
	alert("fuck");
	var left = document.getElementById("left");
	var right = document.getElementById("right");
	if(left.clientHeight>right.clientHeight){
		right.firstChild.style.height = left.clientHeight+"px";
	}else{
		left.firstChild.style.height = right.clientHeight+"px";
	}
	
}
	
//window.onload = autoHeight();
