function forceHeight_subPages(){
	var sideContentHeight,mainContentHeight,sideBarHeight,sideBarMenuHeight,maxHeight,padding;
	padding = 10;
	sideContentHeight = parseInt(document.getElementById("side-content").offsetHeight);
	mainContentHeight = parseInt(document.getElementById("page").offsetHeight);
	if(sideContentHeight>mainContentHeight){
		mainContentHeight = sideContentHeight;
		maxHeight = sideContentHeight;
	}else{
		sideContentHeight = mainContentHeight;
		maxHeight = mainContentHeight;
	}
	sideContentHeight += 0+padding;
	mainContentHeight -= 13-padding;
	sideBarHeight = maxHeight-43+padding;
	sideBarMenuHeight = maxHeight+padding;

	document.getElementById("side-content").style.height = sideContentHeight+"px";

	document.getElementById("page").style.height = mainContentHeight+"px";

	document.getElementById("sidebar").style.height = sideBarHeight+"px";

	document.getElementById("side-content-bar").style.height = sideBarMenuHeight+"px";
}