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

	mstyle = new MenuStyle();
	mstyle.idName = "SmartSubMenu";
	mstyle.idStyle = "vertical";
	mstyle.position = "absolute";
	mstyle.bVisible = false;
	mstyle.cellSpacing = 0;
	mstyle.mainMenuWidth = null;

	menu.newMenu(mstyle);
	menu.addItem("SmartSubMenu", "idName", 1, "source", null,  null, null, null, 1, "red", "red");
	menu.addItem("SmartSubMenu", "idHome", 1, "Home", null,  "/today.asp", null, null, 1);
	menu.addItem("SmartSubMenu", "idArticles", 1, "Articles", null,  null, null, "idArticlesSub", 1);
	menu.addItem("SmartSubMenu", "idInteract", 1, "Interact", null,  null, null, "idInteractSub", 1);
	menu.addItem("SmartSubMenu", "idRecommendedResources", 1, "Recommended Resources", null, null, null, "idRecommendedResourcesSub", 1);
	menu.addItem("SmartSubMenu", "idSearch", 1, "Search", null, "/schedule.asp", null, null, 1);
	menu.addItem("SmartSubMenu", "idSource", 1, "source", null, null, null, "sourceSub", 1);

/////////////////// 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 ",  "/whatsNew.asp", null, null, 1);
	menu.addSeparator("idArticlesSub");
	menu.addItem("idArticlesSub", "idArticlesPresentation", 2, "Presentation", "HTML, Dynamic HTML, XML, VBScript, JavaScript",  "/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  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 ",  "/schedule.asp", null, null, 0);

/////////////////// sourceSub

	mstyle.idName = "sourceSub";

	menu.newMenu(mstyle);
	menu.addItem("sourceSub", "idSourceContactUs", 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:source@esolutiononline.com?subject=source", null, null, 1, "red");
	menu.addItem("sourceSub", "idSourceOurBooks", 2, "Our Books", "The authors of sourceDNA have written on subjects ranging from Visual J++ . Click here to see a listing.",  "/schedule.asp", null, null, 0);
	menu.addSeparator("sourceSub");
	menu.addItem("sourceSub", "idSourceAboutUs", 2, "About Us", "Read all about your sourceDNA staff members that toil away tirelessly to bring you the most up-to-date articles on the Web",  "/aboutUs.asp", null, null, 0);


	showMenu();
}
