//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("indexid", "Index", "Index",  null, null);
	menu.addItem("dedicateid", "Dedications", "Dedications",  null, null);
	menu.addItem("contactid", "Contacts", "Contacts",  null, null);
	menu.addItem("awardsid", "Awards Rec'vd", "Awards Rec'vd",  null, null);
                   menu.addItem("adoptid", "Adoptions", "Adoptions",  null, null);
                   menu.addItem("ringsid", "Webrings", "Webrings",  null, null);
                   menu.addItem("misdid", "Other Stuff", "Other Stuff",  null, null);   
                   menu.addItem("groupsid", "Groups", "Groups",  null, null);  
	
	

menu.addSubItem("indexid", "Index Page", "Index Page",  "http://centex.net/~roberts/", "");


menu.addSubItem("dedicateid", "My cat Puddin", "My cat Puddin",  "http://centex.net/~roberts/puddin.html", "");	
menu.addSubItem("dedicateid", "My Grandparents 1", "My Grandparents 1",  "http://centex.net/~roberts/grandparents.html", "");
menu.addSubItem("dedicateid", "My Grandparents 2", "My Grandparents 2",  "http://centex.net/~roberts/grandparents2.html", "");
menu.addSubItem("dedicateid", "Anniverary 2004", "Anniverary 2004",  "http://centex.net/~roberts/ouranniv2004.html", "");
menu.addSubItem("dedicateid", "Thanksgiving 2004", "Thanksgiving 2004",  "http://centex.net/~roberts/thanksgiving2004.html", "");



menu.addSubItem("contactid", "Contact me?", "Contact me?",  "http://centex.net/~roberts/contacts.html", "");

menu.addSubItem("awardsid", "Awards Rec'vd", "Awards Rec'vd",  "http://centex.net/~roberts/awards.html", "");

menu.addSubItem("adoptid", "Adoptions", "Adoptions",  "http://centex.net/~roberts/adoptions.html", "");

menu.addSubItem("ringsid", "Webrings 1", "Webrings 1",  "http://centex.net/~roberts/webrings.html", "");
menu.addSubItem("ringsid", "Webrings 2", "Webrings 2",  "http://centex.net/~roberts/webrings_2.html", "");
menu.addSubItem("ringsid", "Webrings 3", "Webrings 3",  "http://centex.net/~roberts/webrings_3.html", "");
menu.addSubItem("ringsid", "Webrings 4", "Webrings 4",  "http://centex.net/~roberts/webrings_4.html", "");


menu.addSubItem("misdid", "Family Photos", "Family Photos",  "http://centex.net/~roberts/myfamily.html", "");
menu.addSubItem("misdid", "Sig Tags for Request", "Sig Tags for Request",  "http://centex.net/~roberts/sigtags.html", "");
menu.addSubItem("misdid", "My Blinkie Page", "My Blinkie Page",  "http://centex.net/~roberts/myblinkies.html", "");



menu.addSubItem("groupsid", "Friend2Friend 1", "Friend2Friend 1",  "http://centex.net/~roberts/F2F_1.html", "");	
menu.addSubItem("groupsid", "Friend2Friend 2", "Friend2Friend 2",  "http://centex.net/~roberts/F2F_2.html", "");
menu.addSubItem("groupsid", "Friend2Friend 3", "Friend2Friend 3",  "http://centex.net/~roberts/F2F_3.html", "");
menu.addSubItem("groupsid", "F2F gifts for my b-day", "F2F gifts for my b-day",  "http://centex.net/~roberts/F2F_2004bday.html", "");



	menu.showMenu();
}



