function showToolbar()
{
	menu = new Menu();

	mstyle = new MenuStyle();
	mstyle.idName = "SmartMenu";
	mstyle.idStyle = "horizontal";
	mstyle.position = "relative";
	mstyle.bVisible = true;
	mstyle.cellSpacing = 0;
	mstyle.mainMenuWidth = "100%";
        mstyle.bgColor = "#336666";
        mstyle.fgColor = "#000000";

	menu.newMenu(mstyle);
	menu.addItem("SmartMenu", "idHome", 1, "Home", null,  "/today.asp", null, null, 0);
	menu.addItem("SmartMenu", "idArticles", 1, "Articles", null,  null, null, "idArticlesSub", 0);
	menu.addItem("SmartMenu", "idInteract", 1, "Interact", null,  null, null, "idInteractSub", 0);
	menu.addItem("SmartMenu", "idRecommendedResources", 1, "Recommended Resources", null, null, null, "idRecommendedResourcesSub", 0);
	menu.addItem("SmartMenu", "idSearch", 1, "Search", null, "/schedule.asp", null, null, 0);
	menu.addItem("SmartMenu", "idSourceDna", 1, "sourceDNA", null, null, null, "sourceDnaSub", 0);

/////////////////// idArticlesSub

	mstyle = new MenuStyle();
	mstyle.idName = "idArticlesSub";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.bLeftAligned = 0;
	mstyle.mainMenuWidth = "150px";
        mstyle.bgColor = "#336666";
        mstyle.fgColor = "#000000";

	menu.newMenu(mstyle);
	menu.addItem("idArticlesSub", "idArticlesRecentUpdates", 2, "Recent Updates", "Click here to see the most recent articles written by our sourceDNA staff",  "/whatsNew.asp", null, null, 1);
	menu.addSeparator("idArticlesSub");
	menu.addItem("idArticlesSub", "idArticlesPresentation", 2, "Presentation", "HTML, Dynamic HTML, XML, VBScript, JavaScript, Visual InterDev Design-Time Controls (DTCs)",  "/schedule.asp", null, null, 1);
	menu.addItem("idArticlesSub", "idArticlesApplication", 2, "Application", "Application Services Article",  "/schedule.asp", null, null, 0);
	menu.addItem("idArticlesSub", "idArticlesData", 2, "Data", "Data Services Article",  "/schedule.asp", null, null, 0);
	menu.addItem("idArticlesSub", "idArticlesSystem", 2, "System", "System Services Article",  "/schedule.asp", null, null, 1);

/////////////////// idInteractSub

	mstyle.idName = "idInteractSub";

	menu.newMenu(mstyle);
	menu.addItem("idInteractSub", "idInteractDiscussionBoard", 2, "Discussion Board", "Got questions? Click here to get the answers you are searching for!",  "/schedule.asp", null, null, 1);
	menu.addItem("idInteractSub", "idInteractJobListings", 2, "Job Listings", "Whether you are looking for a job or posting one, we have the best DNA job listings and professionals on the Web",  "/schedule.asp", null, null, 0);

/////////////////// idRecommendedResourcesSub

	mstyle.idName = "idRecommendedResourcesSub";

	menu.newMenu(mstyle);
	menu.addItem("idRecommendedResourcesSub", "idRecommendedResourcesWebSites", 2, "Web Sites", "Still looking for more information? Here you will find a list of our most highly recommended developer Web sites",  "/schedule.asp", null, null, 1);
	menu.addItem("idRecommendedResourcesSub", "idRecommendedResourcesBooks", 2, "Books", "Click here to see our recommendations for the best Windows 2000 and Windows DNA books currently available",  "/schedule.asp", null, null, 0);

/////////////////// sourceDnaSub

	mstyle.idName = "sourceDnaSub";

	menu.newMenu(mstyle);
	menu.addItem("sourceDnaSub", "idSourceDnaContactUs", 2, "Contact Us", "Want us to write a specific article? Got an idea on how we can improve the site? We would love to hear from!",  "mailto:tarcher@mindspring.com?subject=sourceDNA", null, null, 1);
	menu.addItem("sourceDnaSub", "idSourceDnaOurBooks", 2, "Our Books", "The authors of sourceDNA have written on subjects ranging from Visual J++ to Visual InterDev to (of course :) Windows DNA. Click here to see a listing.",  "/schedule.asp", null, null, 0);
	menu.addSeparator("sourceDnaSub");
	menu.addItem("sourceDnaSub", "idSourceDnaAboutUs", 2, "About Us", "Read all about your sourceDNA staff members that toil away tirelessly to bring you the most up-to-date Windows2000/DNA articles on the Web",  "/aboutUs.asp", null, null, 0);


	showMenu();
}
