//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("homeid", "Home", "Home",  null, null);
	menu.addItem("statid", "Stationery", "Stationery",  null, null);
	menu.addItem("pspid", "PSP Tutorials", "PSP Tutorials",  null, null);
	menu.addItem("contact", "Contact Us", "Contact Us",  null, null);
        
	

        menu.addSubItem("homeid", "Home", "Home",  "http://debandlarry.com", "");

        menu.addSubItem("statid", "Stationery", "Stationery",  "http://www.debandlarry.com/statpg1.html", "");	

        menu.addSubItem("pspid", "Frames", "Frames",  "http://www.debandlarry.com/framemenu.html", "");
        menu.addSubItem("pspid", "Sig Tags", "Sig Tags",  "http://www.debandlarry.com/sigtagmenu.html", "");

        menu.addSubItem("pspid", "Scrap Elements", "Scrap Elements",  "http://www.debandlarry.com/scrapmenu/index.html", "");

        menu.addSubItem("contact", "Contact Us", "Contact Us",  "http://www.debandlarry.com/contact.html", "");

      

	
	

	menu.showMenu();
}
