function adjustCols() {
	var menuHeight = document.getElementById('menu').offsetHeight;
	
	var contentHeight = document.getElementById('content').offsetHeight;
	
	//alert("menu: " + menuHeight + "  content " + contentHeight)
	if (menuHeight > contentHeight) {
		menuDivHeight = menuHeight  + 17
		contentDivHeight = menuHeight
		
		
	} else {
		menuDivHeight = contentHeight + 17
		contentDivHeight = contentHeight
	}
	document.getElementById('menu').style.height = menuDivHeight + 'px'; 
	document.getElementById('content').style.height = contentDivHeight + 'px';
		
}

function adjustHomeCols() {
	var menuHeight = document.getElementById('menu').offsetHeight;
	
	var contentHeight = document.getElementById('content1').offsetHeight;
	
	var contentLeft = document.getElementById('content-lhs').offsetHeight;
	var contentRight = document.getElementById('content-rhs').offsetHeight;
	
	//alert("right: " + contentRight + "  left " + contentLeft)
	
	if (menuHeight > contentHeight) {
		menuDivHeight = menuHeight  + 17
		contentDivHeight = menuHeight
		
		
	} else {
		if (contentLeft > contentRight) {
			menuDivHeight = contentLeft + 258
			contentDivHeight = contentLeft + 258
		} else {
			menuDivHeight = contentRight + 288
			contentDivHeight = contentRight + 288
			
		}
	}
	document.getElementById('menu').style.height = menuDivHeight + 'px'; 
	document.getElementById('content1').style.height = contentDivHeight + 'px';
		
}
