

barResize=function(){

var lBox, rBox, mBox, mBoxHeight, minSideHeight;

var tagList=document.getElementsByTagName('div');


	for(var i=0; i<tagList.length; i++){
		if(tagList[i].className){
			if('l_sidebar' == tagList[i].className){
				lBox = tagList[i];
				minSideHeight = lBox.offsetHeight;
			}

			if('r_sidebar' == tagList[i].className){
				rBox = tagList[i];
				if(rBox.offsetHeight>minSideHeight){
					minSideHeight = rBox.offsetHeight;
				}
			}

			if('pages' == tagList[i].className || 'posts' == tagList[i].className){
				mBox = tagList[i];
			}
		}
	}

	mBoxHeight = mBox.offsetHeight;
	if(mBoxHeight<minSideHeight){
		mBox.style.height = minSideHeight-30 + 'px';
		lBox.style.height = minSideHeight + 'px';
		rBox.style.height = minSideHeight + 'px';
	}else{
		lBox.style.height = mBoxHeight-2 + 'px';
		rBox.style.height = mBoxHeight-2 + 'px';
	}

}