// JavaScript for Visualminimal template

//NOT container

	var layoutChange = 0;

	function setHeight() {
	
		// To find the proper height for the body_container <div>
		
		var menu_height = document.getElementById('left_col').offsetHeight;	

		
		var main_area_height = menu_height - 224;
	
		document.getElementById('main_area').style.height= main_area_height+'px';
		
		}
		
	
	
	window.onload = function() {
		setHeight();
	}
	

	
