//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("main", "Email", "Email",  null, null);

	
       
menu.addItem("poodle", "Poodle", "Poodle",  null, null);



menu.addItem("afghan", "Afghan Hound", "Afghan Hound",  null, null);




menu.addItem("portrait", "Portraits", "Portraits",  null, null);



menu.addItem("stglass", "Stained Glass", "Stained Glass",  null, null);


menu.addItem("dolls", "The Dolls", "The Dolls",  null, null);

	
menu.addSubItem("main", "Email", "Email",  "mailto:kelly@angelsunawares.net", "");	


menu.addSubItem("poodle", "Poodle", "Poodle",  "http://poodle.bizland.com/mission.html", "");


menu.addSubItem("afghan", "Afghan Hound", "Afghan Hound",  "http://poodle.bizland.com/afghans.html", "");
	

 





menu.addSubItem("portrait", "Photo Policy", "Photo Policy", 
"http://poodle.bizland.com/photopolicy.html", "");
 



 
menu.addSubItem("stglass", "Dog Portrait", "Dog Portrait", "http://poodle.bizland.com/dogportrait.html", "");



 



 
menu.addSubItem("dolls", "The Dolls", "The Dolls", "http://www.angelsunawares.net", "");



 






menu.showMenu();
}
