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

	mstyle = new MenuStyle();
	mstyle.idName = "SmartMenu";
	mstyle.idStyle = "horizontal";
	mstyle.position = "absolute";
	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, "red");
	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", "idSource", 1, "source", null, null, null, "sourceSub", 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 ",  "/whatsNew.asp", null, null, 1, "red");
	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", " we have the best 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? ",  "/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);
	menu.addItem("sourceSub", "idSourceaOurBooks", 2, "Our Books", " Click here to see a listing.",  "/schedule.asp", null, null, 0);
	menu.addSeparator("sourceSub");
	menu.addItem("sourceSub", "idSourceAboutUs", 2, "About Us", "Read all about staff members that toil away tirelessly to bring you the most up-to-date articles on the Web",  "/aboutUs.asp", null, null, 0);


	showMenu();
}
