function showToolbar()
{
	menu = new Menu();
	menu.addItem("yaa_map", "Site Map", "Map of entire site",  "/", "/");
	menu.addItem("yaa_contactus", "Contact", "Contact information",  "/contact/", "/contact/");
	menu.addItem("yaa_privacy", "Privacy", "Privacy information",  "/privacy/", "/privacy/");
	menu.addItem("yaa_company", "Company", "Company information",  "/contact/", "/contact/");
	menu.addItem("yaa_help", "Help", "Help with services and products",  "/help/", "/help/");
	menu.addItem("yaa_order", "Order", "Order services and products",  "/order/", "/order/");
	menu.addItem("yaa_security", "Security", "Security information",  "/security/", "/security/");
	menu.addItem("yaa_faq", "FAQ", "Frequently Asked Questions",  "/faq/", "/faq/");
	menu.addItem("yaa_support", "Support", "Support",  "/support/", "/support/");

	menu.addSubItem("yaa_map", "Home", "Home",  "/");
	menu.addSubItem("yaa_map", "Enterprise", "Enterprise",  "/enterprise/");
	menu.addSubItem("yaa_map", "Web Site", "Web Site",  "/website/");
	menu.addSubItem("yaa_map", "Small Business", "Small Business",  "/small/");
	menu.addSubItem("yaa_map", "Entrepreneur", "Entrepreneur",  "/entrepreneur/");
	menu.addSubItem("yaa_map", "Technology", "Technology",  "/technology/");
	menu.addSubItem("yaa_map", "Networks", "Networks",  "/networks/");
	menu.addSubItem("yaa_map", "Order", "Order",  "/order/");
	menu.addSubItem("yaa_map", "Order Services", "Services",  "/services/");
	menu.addSubItem("yaa_map", "Order Consulting", "Consulting",  "/services/consulting/");
	menu.addSubItem("yaa_map", "Help", "Help",  "/help/");
	menu.addSubItem("yaa_map", "Contact Us", "Contact Us",  "/contact/");
	menu.addSubItem("yaa_map", "FAQ", "FAQ",  "/faq/");
	menu.addSubItem("yaa_map", "Support", "Support",  "/support/");
	menu.addSubItem("yaa_map", "Terms of Use", "Terms of use",  "/help/terms.html");
	menu.addSubItem("yaa_map", "Privacy", "Privacy",  "/privacy/");
	menu.addSubItem("yaa_map", "Security", "Security",  "/security/");

	menu.addSubItem("yaa_contactus", "Contact Us", "Contact Us",  "/contact/");
	menu.addSubItem("yaa_contactus", "Support", "Support",  "/support/");

	menu.addSubItem("yaa_privacy", "Privacy", "Privacy",  "/privacy/");
	menu.addSubItem("yaa_privacy", "Help", "Help",  "/help/");

	menu.addSubItem("yaa_company", "Contact Us", "Contact Us",  "/contact/");
	menu.addSubItem("yaa_company", "Help", "Help",  "/help/");

	menu.addSubItem("yaa_help", "Help", "Help",  "/help/");
	menu.addSubItem("yaa_help", "Support", "Support",  "/support/");
	menu.addSubItem("yaa_help", "FAQ", "FAQ",  "/faq/");

	menu.addSubItem("yaa_order", "Order", "Order",  "/order/");
	menu.addSubItem("yaa_order", "Order Services", "Services",  "/services/");
	menu.addSubItem("yaa_order", "Order Consulting", "Consulting",  "/services/consulting/");

	menu.addSubItem("yaa_security", "Security", "Security",  "/security/");
	menu.addSubItem("yaa_security", "Help", "Help",  "/help/");

	menu.addSubItem("yaa_faq", "FAQ", "FAQ",  "/faq/");
	menu.addSubItem("yaa_faq", "Support", "Support",  "/support/");

	menu.addSubItem("yaa_support", "Support", "Support",  "/support/");
	menu.addSubItem("yaa_support", "Help", "Help",  "/help/");

	menu.showMenu();
}
showToolbar();
function UpdateIt(){
	if (document.all){
		document.all["MainTable"].style.top = document.body.scrollTop;
		setTimeout("UpdateIt()", 200);
	}
	if(document.getElementById)
	{
               document.getElementbyId["MainTable"].style.top = document.body.scrollTop;
               setTimeout("UpdateIt()", 200);

	}	
}
UpdateIt();

