 //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("webmasterid", "Original Designs", "Original Designs",  null, null);
	menu.addItem("searchengineid", "Customer Service", "Customer Service",  null, null);
	menu.addItem("newsid", "Affiliate Links", "Affiliate Links",  null, null);
	menu.addItem("freedownloadid", "Extras", "Extras",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home!",  "http://www.rebeccasdaughter.com", "");
	menu.addSubItem("webmasterid", "Hats", "Hats",  "http://www.rebeccasdaughter.com/hats.html", "");
	menu.addSubItem("webmasterid", "Purses", "Purses",  "http://www.rebeccasdaughter.com/purses.html", "");
	menu.addSubItem("webmasterid", "Pillows", "Pillows",  "http://www.rebeccasdaughter.com/pillows.html", "");
	menu.addSubItem("webmasterid", "Formal Wear", "Formal Wear",  "http://www.rebeccasdaughter.com/formal.html", "");
	menu.addSubItem("webmasterid", "Animal Attire", "Animal Attire",  "http://www.rebeccasdaughter.com/animal.html", "");	

	menu.addSubItem("searchengineid", "Home", "Home!",  "http://www.rebeccasdaughter.com", "");
	menu.addSubItem("searchengineid", "Contact Form", "Contact Form",  "http://www.rebeccasdaughter.com/form.html", "");		
	menu.addSubItem("searchengineid", "Contact Info", "Contact Info",  "http://www.rebeccasdaughter.com/info.html", "");
	menu.addSubItem("searchengineid", "About Us", "About Us",  "http://www.rebeccasdaughter.com/about.html", "");

	menu.addSubItem("newsid", "Home", "Home!",  "http://www.rebeccasdaughter.com", "");
		
	menu.addSubItem("freedownloadid", "Home", "Home!",  "http://www.rebeccasdaughter.com", "");
	
	menu.showMenu();
}
