// JavaScript Document
function menuResize(){
	var menuID;
	var parentID;
	var childID;
	var parentWidth;
	
	menuID = "deepFoundations";
	var parentID = document.getElementById(menuID);
	var childID = document.getElementById(menuID + "DDL");
	childID.style.width = (parentID.offsetWidth - 30) + "px";
	
	menuID = "earthRetention";
	var parentID = document.getElementById(menuID);
	var childID = document.getElementById(menuID + "DDL");
	childID.style.width = (parentID.offsetWidth - 30) + "px";
	
	menuID = "groundTreatment";
	var parentID = document.getElementById(menuID);
	var childID = document.getElementById(menuID + "DDL");
	childID.style.width = (parentID.offsetWidth - 30) + "px";
	
	menuID = "groundImprovement";
	var parentID = document.getElementById(menuID);
	var childID = document.getElementById(menuID + "DDL");
	childID.style.width = (parentID.offsetWidth - 30) + "px";
	
	menuID = "techResources";
	var parentID = document.getElementById(menuID);
	var childID = document.getElementById(menuID + "DDL");
	childID.style.width = (parentID.offsetWidth - 30) + "px";
}
