//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);
// To open into a new window use "_blank" at the end of the link
// To open into the same window use "" at the end of the link

	menu = new Menu();
	menu.addItem("CBSweb", "Cherry Blossom Pages", "Our Other Pages",  null, null);
	menu.addItem("whoid", "Who Are We", "Who Are We",  null, null);
	menu.addItem("coolsites", "Cool Sites", "Cool Sites",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("CBSweb", "Home", "Main Page",  "http://www.cherryblossomshoppe.com/index.html", "");
	menu.addSubItem("CBSweb", "Lingerie", "Naughty, Silk, Cotton...",  "http://www.cherryblossomshoppe.com/Lingerie.html", "");
	menu.addSubItem("CBSweb", "Casual Wear", "T-Shirts, Flour Sacks, etc...",  "http://www.cherryblossomshoppe.com/casualwear.html", "");
	menu.addSubItem("CBSweb", "Evening Wear", "Dresses, Coats, etc...",  "http://www.cherryblossomshoppe.com/Eveningwear.html", "");
	menu.addSubItem("CBSweb", "Jewelry", "Rings, Necklaces, Bracelets, etc...",  "http://www.cherryblossomshoppe.com/jewelry1.html", "");
menu.addSubItem("CBSweb", "Accessories", "Handbags, Scarves",  "http://www.cherryblossomshoppe.com/Accessories.html", "");
menu.addSubItem("CBSweb", "Cosmetics", "Lip Gloss, Compact cases... Mascara",  "http://www.cherryblossomshoppe.com/cosmetics.html", "");
menu.addSubItem("CBSweb", "Swim Wear", "Swim Wear for the Ladies",  "http://www.cherryblossomshoppe.com/Swimwear.html", "");
//menu.addSubItem("CBSweb", "Seasonal", "Halloween, Christmas, etc... fashions",  "http://www.cherryblossomshoppe.com/seasonal.html", "");
menu.addSubItem("CBSweb", "Sleep Wear", "Nighties, Pajamas... fashions",  "http://www.cherryblossomshoppe.com/sleepwear.html", "");
menu.addSubItem("CBSweb", "Men's Corner", "Wallets, Watches...",  "http://www.cherryblossomshoppe.com/mens.html", "");
menu.addSubItem("CBSweb", "___Wallets", "Wallets, Wallets & More Wallets...",  "http://www.cherryblossomshoppe.com/mens.html", "");
menu.addSubItem("CBSweb", "___Watches", "Watches, Watches & More Watches...",  "http://www.cherryblossomshoppe.com/watches.html", "");

	menu.addSubItem("whoid", "About Us", "Learn about us",  "http://www.cherryblossomshoppe.com/About_Us.htm", "");
	menu.addSubItem("whoid", "Contact Us", "How to reach us",  "http://www.cherryblossomshoppe.com/Contact_Us.htm", "");
	menu.addSubItem("whoid", "Mailing List", "Join our mailing list",  "http://www.cherryblossomshoppe.com/Mailing_List.html", "");
	menu.addSubItem("whoid", "Owners", "Employees",  "http://www.cherryblossomshoppe.com/password.html", "");
	menu.addSubItem("whoid", "Survey", "Take Our Survey",  "http://www.questionpro.com/akira/TakeSurvey?id=97138", "");
	
	menu.addSubItem("coolsites", "Ruidoso", "Cool in so many ways...",  "http://www.goruidoso.com/", "");
	menu.addSubItem("coolsites", "SDS Sales", "Need help getting your small business on the web...",  "http://sdssales.com/", "");
menu.addSubItem("coolsites", "Sunrise Bolinao", "Best Exotic, Paradise Resort in the World",  "http://www.sunrisebolinao.com", "");
	menu.addSubItem("coolsites", "Paypal", "Join Now its Free!",  "http://paypal.com/", "");
    menu.addSubItem("coolsites", "Ebay", "Come check us out at ebay",  "http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=3441302320&category=3007", "");

    menu.addSubItem("searchengineid", "Google", "My favorite",  "http://www.google.com/", "");
	menu.addSubItem("searchengineid", "Alta Vista", "Alta Vista",  "http://www.altavista.com/", "");
	
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/", "");
	menu.addSubItem("miscid", "RealAudio", "Need Tunes...",  "http://www.realaudio.com/", "");
	menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.mp3.com/", "");

	menu.showMenu();
}