
function init(){
	rcHeight = $('leftContent').offsetHeight;
	cHeight = $('content').offsetHeight;
	
	if(cHeight > rcHeight){
		$('leftContent').style.height = cHeight
	}else{
		$('content').style.height = rcHeight
	}
	
}


