<!--
function fwLoadMenus(strBaseURL) {
	if (window.NAV_ABOUT) return;

	// Support
	window.NAV_ABOUT = new Menu("root",200,20,"Verdana, Arial, Helvetica, sans-serif",11,"#ffffff","#0E2477","#FFAB3E","#FFAB3E");
	NAV_ABOUT.addMenuItem("&nbsp;Who are we","location='" + strBaseURL + "/who_are_we.asp'");
	NAV_ABOUT.addMenuItem("&nbsp;People","location='" + strBaseURL + "/people.asp'");
	NAV_ABOUT.addMenuItem("&nbsp;Partners","location='" + strBaseURL + "/our_partners.asp'");
	NAV_ABOUT.addMenuItem("&nbsp;Customers","location='" + strBaseURL + "/our_customers.asp'");
	NAV_ABOUT.addMenuItem("&nbsp;Careers","location='" + strBaseURL + "/careers.asp'");
	
	NAV_ABOUT.hideOnMouseOut=true;
			
	window.NAV_SOLUTIONS = new Menu("root",200,20,"Verdana, Arial, Helvetica, sans-serif",11,"#ffffff","#0E2477","#FFAB3E","#FFAB3E");
	NAV_SOLUTIONS.addMenuItem("&nbsp;Supporting Small Business","location='" + strBaseURL + "/supporting_small_business.asp'");
	NAV_SOLUTIONS.addMenuItem("&nbsp;Reliable Networks","location='" + strBaseURL + "/reliable_networks.asp'");
	NAV_SOLUTIONS.addMenuItem("&nbsp;Outsourcing IT Support","location='" + strBaseURL + "/outsourcing_IT_support.asp'");
	NAV_SOLUTIONS.addMenuItem("&nbsp;Small Business Server","location='" + strBaseURL + "/microsoft_sbs.asp'");
	NAV_SOLUTIONS.addMenuItem("&nbsp;Expertise for Sale","location='" + strBaseURL + "/expertise_for_sale.asp'");
	// NAV_SOLUTIONS.addMenuItem("&nbsp;Support Plans","location='" + strBaseURL + "/support_plans.asp'");
	NAV_SOLUTIONS.addMenuItem("&nbsp;Remote Support","location='" + strBaseURL + "/remote_support.asp'");
	
	NAV_SOLUTIONS.hideOnMouseOut=true;
	NAV_SOLUTIONS.writeMenus();
	
} // fwLoadMenus()

//-->