//Top Nav bar script v2- http://www.dynamicdrive.us/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", null, "http://www.forgetmenotgraphics.us/", null);
	menu.addItem("statid", "Stationery", null, null);
	menu.addItem("screenid", "Screen Savers", null,  "http://www.forgetmenotgraphics.us/screensaver/", null);
	menu.addItem("appid", "Applets", null,  "http://www.forgetmenotgraphics.us/applets", null);
	menu.addItem("tutid", "Tutorials", null,  null, null);
	menu.addItem("webid", "Web Sets", null,  "http://www.forgetmenotgraphics.us/websets/", null); 	
	menu.addItem("ringid", "Groups/Rings", "Groups that I belong to", "http://www.forgetmenotgraphics.us/rings.htm", null);
	
	menu.addSubItem("statid", "Angels", "Angels",  "http://www.forgetmenotgraphics.us/stationery/angel.htm");
	menu.addSubItem("statid", "Animals", "Animals",  "http://www.forgetmenotgraphics.us/stationery/animals.htm");
	menu.addSubItem("statid", "Fantasy", "Fantasy",  "http://www.forgetmenotgraphics.us/stationery/fantasy.htm");
	menu.addSubItem("statid", "Floral", "Floral",  "http://www.forgetmenotgraphics.us/stationery/floral.htm");
	menu.addSubItem("statid", "Miscellaneous", "Miscellaneous",  "http://www.forgetmenotgraphics.us/stationery/miscstat.htm");
	menu.addSubItem("statid", "Valentine's Day", "Valentine's Day",  "http://www.forgetmenotgraphics.us/stationery/valentine.htm");
	menu.addSubItem("statid", "St Patrick's Day", "St Patrick's Day",  "http://www.forgetmenotgraphics.us/stationery/stpatty.htm");
	menu.addSubItem("statid", "Easter", "Easter",  "http://www.forgetmenotgraphics.us/stationery/easter.htm");
	menu.addSubItem("statid", "Fall", "Fall",  "http://www.forgetmenotgraphics.us/stationery/fall.htm");
	menu.addSubItem("statid", "Christmas/Winter", "Christmas/Winter",  "http://www.forgetmenotgraphics.us/stationery/xmas.htm");

	menu.addSubItem("tutid", "Gaussian Blur Background", "Stationery or Website Background",  "http://www.forgetmenotgraphics.us/tutorials/gaussian.htm");
	menu.addSubItem("tutid", "Muted Tube Background", "Stationery or Website Background",  "http://www.forgetmenotgraphics.us/tutorials/mutedtube.htm");
	menu.addSubItem("tutid", "Frankenstein", "Cute Frankenstein Head", "http://www.forgetmenotgraphics.us/tutorials/frank/"); 

	menu.showMenu();
}
