function getMenu(){
	// root ul
	var rootUl = document.createElement("ul");
	rootUl.id = "nav";

	
	// Corporate Relocation Services menu
	var corpRelocServUl = document.createElement("ul");
	CreateLink(rootUl, "/corporate/index.htm", "Corporate Relocation Services", corpRelocServUl, "nav1");
	CreateLink(corpRelocServUl, "/corporate/employee-relocation.html", "Employee Relocation");
	CreateLink(corpRelocServUl, "/corporate/kansas-city-office-moving.html", "Kansas City Office Moving");
	CreateLink(corpRelocServUl, "/corporate/st-louis-office-moving.html", "St. Louis Office Moving");
	CreateLink(corpRelocServUl, "/corporate/columbia-office-moving.html", "Columbia Office Moving");
	CreateLink(corpRelocServUl, "/corporate/springfield-office-moving.html", "Springfield Office Moving");
	CreateLink(corpRelocServUl, "/corporate/belleville-office-moving.html", "Belleville Office Moving");
	CreateLink(corpRelocServUl, "/corporate/project-management.html", "Project Management");
	CreateLink(corpRelocServUl, "/corporate/industrial-electronics.html", "Industrial &amp; Electronics");
	CreateLink(corpRelocServUl, "/corporate/computer-disconnect-reconnect.html", "Computer Disconnect &amp; Reconnect");
	CreateLink(corpRelocServUl, "/corporate/hospitality.html", "Hospitality FF&amp;E");
	CreateLink(corpRelocServUl, "/corporate/installations.html", "Installations");
	CreateLink(corpRelocServUl, "/corporate/government-services.html", "Government Services");
	
	// Residential Moving Services menu
	var resMovingServUl = document.createElement("ul");
	CreateLink(rootUl, "/residential/index.htm", "Residential Moving Services", resMovingServUl, "nav2");
	CreateLink(resMovingServUl, "/residential/kansas-city-moving-services.html", "Kansas City Moving Services");
	CreateLink(resMovingServUl, "/residential/st-louis-moving-services.html", "St. Louis Moving Services");
	CreateLink(resMovingServUl, "/residential/columbia-moving-services.html", "Columbia Moving Services");
	CreateLink(resMovingServUl, "/residential/springfield-moving-services.html", "Springfield Moving Services");
	CreateLink(resMovingServUl, "/residential/belleville-moving-services.html", "Belleville Moving Services");
	CreateLink(resMovingServUl, "/residential/do-it-yourself.html", "Do It Yourself");
	CreateLink(resMovingServUl, "/residential/forms.html", "Forms");
	CreateLink(resMovingServUl, "http://www.unitedvanlines.com/mover/moving-aids/packing-tips.htm", "Packing Tips");
	CreateLink(resMovingServUl, "http://www.unitedvanlines.com/mover/full-service-movers/full-service-faq.htm", "FAQ");
	
	// Global Relocation menu
	var globalRelocServUl = document.createElement("ul");
	CreateLink(rootUl, "/global-relocation/index.htm", "Global Relocation", globalRelocServUl, "nav3");
	CreateLink(globalRelocServUl, "/global-relocation/corporate-relocation.htm", "Corporate Relocation");
	CreateLink(globalRelocServUl, "/global-relocation/residential-moving.htm", "Residential Moving");
	
	// Warehousing/storage menu
	var warehousingServUl = document.createElement("ul");
	CreateLink(rootUl, "/warehousing-storage/index.htm", "Warehousing/Storage", warehousingServUl, "nav4");
	CreateLink(warehousingServUl, "/warehousing-storage/records-management.html", "Records Management");
	CreateLink(warehousingServUl, "/warehousing-storage/asset-management.htm", "Asset Management");
	
	// Freight management menu
	var freightManMovingServUl = document.createElement("ul");
	CreateLink(rootUl, "/freight-management/index.htm", "Freight Management", freightManMovingServUl, "nav5");
	CreateLink(freightManMovingServUl, "/freight-management/transportation-logistics.html", "Transportation Logistics");
	CreateLink(freightManMovingServUl, "/freight-management/transportation-forward.html", "Forwarding");
	
	// About us
	var aboutUsServUl = document.createElement("ul");
	CreateLink(rootUl, "/index.htm", "About Us", aboutUsServUl, "nav6");
	CreateLink(aboutUsServUl, "/about-us/letter-from-president.html", "Letter from the President");
	CreateLink(aboutUsServUl, "/about-us/customer-promise.html", "Customer Promise");
	CreateLink(aboutUsServUl, "/about-us/service-quality.html", "Service Quality");
	CreateLink(aboutUsServUl, "/about-us/awards-recognition.html", "Awards &amp; Recognition");
	CreateLink(aboutUsServUl, "/about-us/going-green.html", "Going Green");
	CreateLink(aboutUsServUl, "/about-us/affiliations-memberships.html", "Affiliations &amp; Memberships");
	CreateLink(aboutUsServUl, "/residential/forms.html", "Forms");
	CreateLink(aboutUsServUl, "/about-us/careers.html", "Careers");

	// add to menu div
	var div = document.getElementById("menu");
	div.appendChild(rootUl);
}

function CreateLink(ul, href, text, subUl, className) {
	var a, li, undefined;
	
	li = document.createElement("li");
	
	a = document.createElement("a");
	li.className = className;
	a.href = href;
	a.innerHTML = text;
	li.appendChild(a);
	
	// menu branch
	if(subUl != undefined) {
		li.appendChild(subUl);
	}
	
	ul.appendChild(li);
}

//css nav fix for IE
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);