function loadMenus() {
	//Dynamic Menus
	window.myMenu = new Menu();
	myMenu.addMenuItem("Corporate Profile", "top.window.location='Corporate.aspx'");
	myMenu.addMenuItem("Museum", "top.window.location='Museum.aspx'");
	myMenu.addMenuItem("Career", "top.window.location='CareerList.aspx'");
	myMenu.addMenuItem("Contact Us", "top.window.location='ContactUs.aspx'");
	myMenu.menuItemBgColor = "#CBEFFF";
	myMenu.menuHiliteBgColor = "#94DEFF";
	myMenu.menuItemHeight = 16;
	myMenu.menuItemWidth = 120;
	myMenu.fontFamily = "Verdana";
	myMenu.fontSize = 10;
	myMenu.fontColor = "Black";
	myMenu.bgColor = "#007CAF";

	window.myMenu2 = new Menu("Products");
	myMenu2.addMenuItem("View Yamaha Bikes", "top.window.location='Products.aspx'");
	myMenu2.menuItemBgColor = "#CBEFFF";
	myMenu2.menuHiliteBgColor = "#94DEFF";
	myMenu2.menuItemHeight = 16;
	myMenu2.menuItemWidth = 150;
	myMenu2.fontFamily = "Verdana";
	myMenu2.fontSize = 10;
	myMenu2.fontColor = "Black";
	myMenu2.bgColor = "#007CAF";

	window.myMenu3 = new Menu("News");
	myMenu3.addMenuItem("Press Release", "top.window.location='PressRelease.aspx'");
	myMenu3.addMenuItem("Promotions", "top.window.location='EgoPromotion.aspx'");
	myMenu3.menuItemBgColor = "#CBEFFF";
	myMenu3.menuHiliteBgColor = "#94DEFF";
	myMenu3.menuItemHeight = 16;
	myMenu3.menuItemWidth = 120;
	myMenu3.fontFamily = "Verdana";
	myMenu3.fontSize = 10;
	myMenu3.fontColor = "Black";
	myMenu3.bgColor = "#007CAF";

	window.myMenu4 = new Menu("After Sales");
	myMenu4.addMenuItem("Spare Parts", "window.open('ProductCatalogue.aspx')");
	myMenu4.addMenuItem("Self Maintenance", "window.open('pdf/sm_customers.pdf')");
	myMenu4.addMenuItem("Pre-Delivery Inspection", "top.window.location='PreDeliveryInspection.aspx'");
	myMenu4.addMenuItem("Warranty Info", "top.window.location='Warranty.aspx'");
	myMenu4.menuItemBgColor = "#CBEFFF";
	myMenu4.menuHiliteBgColor = "#94DEFF";
	myMenu4.menuItemHeight = 16;
	myMenu4.menuItemWidth = 170;
	myMenu4.fontFamily = "Verdana";
	myMenu4.fontSize = 10;
	myMenu4.fontColor = "Black";
	myMenu4.bgColor = "#007CAF";

	window.myMenu5 = new Menu("Community");
	myMenu5.addMenuItem("Downloads", "top.window.location='Downloads.aspx'");
	myMenu5.addMenuItem("Photo Gallery", "top.window.location='PhotoGallery.aspx'");
	myMenu5.addMenuItem("Safety Riding", "top.window.location='Safetyriding.aspx'");
	myMenu5.addMenuItem("Environmental Policy", "top.window.location='Pdf/EnvPolicy.pdf'");
	myMenu5.menuItemBgColor = "#CBEFFF";
	myMenu5.menuHiliteBgColor = "#94DEFF";
	myMenu5.menuItemHeight = 16;
	myMenu5.menuItemWidth = 130;
	myMenu5.fontFamily = "Verdana";
	myMenu5.fontSize = 10;
	myMenu5.fontColor = "Black";
	myMenu5.bgColor = "#007CAF";

	window.myMenu6 = new Menu("Example 6");
	myMenu6.addMenuItem("DevEdge Online", "top.window.location='http://developer.netscape.com'");
	myMenu6.addMenuItem("View Source", "top.window.location='/viewsource/'");
	myMenu6.addMenuItem("Netcenter", "top.window.location='http://home.netscape.com'");
	myMenu6.addMenuItem("Download", "top.window.location='http://home.netscape.com/download/'");

	myMenu.writeMenus();
}

