//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("contactusid", "CONTACT US", "Contact Us",  null, null);        
menu.addItem("aboutid", "ABOUT US", "About Us",  null, null);        
menu.addItem("newsid", "NEWS", "News",  null, null);        
menu.addItem("scrapbookid", "SCRAPBOOK", "Scrapbook",  null, null);        
menu.addItem("galleryid", "GALLERY", "Gallery",  null, null);        
menu.addItem("justinid", "JUST IN", "JUST IN",  null, null);        
menu.addItem("linksid", "LINKS", "Links",  null, null);        
menu.addItem("homeid", "HOME", "HOME",  null, null);

menu.addSubItem("contactusid", "Contact Us", "Contact Us", "contactus.html", "");
menu.addSubItem("aboutid", "About Us", "About Us", "aboutus.html", "");
menu.addSubItem("newsid", "Cyber Gear", "Joins North 400", "http://www.redorbit.com/news/technology/540656/main_street_gets_appleexpertise_computer_shop/index.html", " _blank");
menu.addSubItem("newsid", "Shopping Mayberry Days", "2007", "http://www.mtairynews.com/articles/2007/10/01/news/local_news/local03.txt", " _blank");
menu.addSubItem("newsid", "Thrive Magazine", "Scarlet Begonias Story", "ScarletBegonias.pdf", "_blank");
menu.addSubItem("newsid", "Mount Airy News", "Community Focus", "MtAiryNews.pdf", "_blank");

menu.addSubItem("scrapbookid", "North 400", "Grand Opening 2006", "north400.html", "");
menu.addSubItem("scrapbookid", "Joe Gardener", "2007", "joegardener.html", "");
menu.addSubItem("scrapbookid", "Tommy Jerrell Festival", "2006", "tjfest2006.html", "");
menu.addSubItem("scrapbookid", "Meet the Author", "Jane Tesh",  "meettheauthor.html", "");
menu.addSubItem("justinid", "People", "People", "people.html", "");
menu.addSubItem("justinid", "Merchandise", "Merchandise",  "merchandise.html", "");	
menu.addSubItem("galleryid", "Clothing", "Clothing",  "clothing.html", "");
menu.addSubItem("galleryid", "Gifts", "Gifts",  "gifts.html", "");

menu.addSubItem("galleryid", "Jewelry", "Jewelry",  "jewelry.html", "");
menu.addSubItem("linksid", "Links", "Links",  "links.html", "");	
menu.addSubItem("homeid", "Home", "Home",  "index.html", "");		

menu.showMenu();
}