// 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('menu').offsetHeight;	
		var main_area_height = document.getElementById('drop_shadow').offsetHeight;	

		if (menu_height>main_area_height) {
		
		var main_area_height = menu_height+30; 

		document.getElementById('drop_shadow').style.height= main_area_height+'px';
		}
		
		
		}
		
	
	
	window.onload = function() {
		setHeight();
	}
	

	

