function myColHeightFix() {
	col="leftMenu";
	main="content";
	divCol = document.getElementById(col);
	divMain = document.getElementById(main);

	var maxHeight = Math.max(divCol.offsetHeight, divMain.offsetHeight); 
	
	divCol.style.height = maxHeight+'px';
	divMain.style.height = maxHeight+'px';

	// No need to set the main-content div height, becuase the main-wrapper should
	//  and will have the same background color, and since the main-wrapper will
	//  always be set the the maxHeight, the main-content will display correctly.
	//  Therefore DO NOT set the value below or else an error in IE 6 occur which
	//  results in -3px margin on the left and right of the main-content div.
	//divMain.style.height = maxHeight;	
}
