//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("Steves", "Steve's", "Information On Steve Cole",  null, null);
	menu.addItem("Suzie", "Suzie's", "Information On Suzie Cole",  null, null);
	menu.addItem("Family", "Family", "About the family",  null, null);
	menu.addItem("Vacation", "Vacation", "Vacation",  null, null);
	menu.addItem("Tech", "Tech help", "Steves tech corrner",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous", null, null);
        menu.addItem("Site", "Site Directory", "Site Directory",  null, null);

	menu.addSubItem("Steves", "About Steve", "Information on Steve",  "http://www.secole.com/steve", "");
	menu.addSubItem("Steves", "Indy Photo Tour", "Indy Photos and images",  "http://www.secole.com/indy/indianapolis.htm", "");
	menu.addSubItem("Steves", "Steve's links", "Steves off site web links",  "http://www.secole.com/links/links.htm", "");
	menu.addSubItem("Steves", "Steve's ICQ", "Steves Online Message Center",  "http://www.secole.com/icq/index.htm", "");
	
	menu.addSubItem("Suzie", "About Suzie", "Information on Suzie",  "http://www.secole.com/suzie", "");
	menu.addSubItem("Suzie", "Photo", "Photos and Images",  "http://www.secole.com/suzie", "");
	menu.addSubItem("Suzie", "Suzie's links", "Suzies off site web links",  "http://www.secole.com/suzielink.htm", "");
	
	menu.addSubItem("Family", "About our family", "Informatiom on all the Cole family",  "http://www.secole.com/introduction.htm", "");
	menu.addSubItem("Family", "Denise's Page", "Denise's Page",  "http://www.secole.com/denise", "");
	menu.addSubItem("Family", "Eric's Page", "Eric's Page",  "http://www.secole.com/eric", "");
	menu.addSubItem("Family", "Lucy's Page", "Lucy's Page",  "http://www.secole.com/lucy", "");
	menu.addSubItem("Family", "Heidi's Page", "Heidi's Page",  "http://www.secole.com/heidi", "");	

	menu.addSubItem("Vacation", "Cabo 2002", "Cabo San Lucus, MX",  "http://www.secole.com/vacation/cabo/album1.html", "");
	menu.addSubItem("Vacation", "Cancun 2004", "Cancun, MX",  "http://www.secole.com/vacation/cancun/album1.html", "");
	menu.addSubItem("Vacation", "DC 2005", "Washington DC",  "http://www.secole.com/vacation/DC2005/album1.html", "");
	menu.addSubItem("Vacation", "Cancun 2006", "Cancun, MX",  "http://www.secole.com/vacation/cancun06/album1.html", "");   
    	menu.addSubItem("Vacation", "Cancun 2007", "Cancun, MX",  "http://www.secole.com/vacation/cancun07/album1.html", "");
        menu.addSubItem("Vacation", "Cabo 2008", "Cabo San Lucus, MX",  "http://www.secole.com/vacation/cabo08/album1.html", "");
	menu.addSubItem("Vacation", "Cruise 2009", "Eastern Caribbean",  "http://www.secole.com/vacation/cruise09/album1.html", "");
 

	menu.addSubItem("Tech", "Tips and tricks", "Computer help and tips page",  "http://www.secole.com/tips.htm", "");
	menu.addSubItem("Tech", "Photo Effects", "Strange Image Effects",  "http://www.secole.com/effects/effects.htm", "");
	menu.addSubItem("Tech", "Help and tech links", "Excite", "http://www.secole.com/help.htm", "");

	menu.addSubItem("miscid", "Dell", "Dell Computers",  "http://www.dell.com/", "_blank");
	menu.addSubItem("miscid", "MSN Search", "Search the web with MSN",  "http://search.msn.com/", "_blank");
	menu.addSubItem("miscid", "Google Search", "Search the web with Google",  "http://www.google.com/", "_blank");
	menu.addSubItem("miscid", "Indy Star", "Local Indy news",  "http://www.indystar.com//", "_blank");

	menu.addSubItem("Site", "Main page", "Sites main page",  "http://www.secole.com/main.htm", "");
	menu.addSubItem("Site", "Contact Us", "Contact Us",  "http://www.secole.com/contact.htm", "");	
	menu.addSubItem("Site", "Photo Album", "Cole familys on-line photo alubm",  "http://www.secole.com/photos/photo.htm", "");
	menu.showMenu();
}