//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", "About Us", "About Us",  null, null);
	menu.addItem("newsid", "Blog", "Blog",  "http://www.myspace.com/fortworthmargaritasociety", "");
	menu.addItem("eventsid", "Special Events", "Special Events",  null, null);
	menu.addItem("eventsid2", "Margarita Ball", "",  null, null);
	menu.addItem("membershipid", "Membership", "Membership",  null, null);
	menu.addItem("miscid", "Photo Gallery", "Photo Gallery",  null, null);
	menu.addItem("miscid2", "Sponsors", "Sponsors",  null, null);
	menu.addItem("miscid3", "Contacts", "Contacts",  null, null);
	
	menu.addSubItem("webmasterid", "History", "History",  "http://www.fortworthmargaritasociety.com/history.html", "");
	menu.addSubItem("webmasterid", "Charities", "Charities",  "http://www.fortworthmargaritasociety.com/charityindex.html", "");
	
	menu.addSubItem("newsid", "Blog", "",  "", "");	
	
	menu.addSubItem("eventsid", "Events & Updates", "Events & Updates",  "http://www.fortworthmargaritasociety.com/events.html", "");
	menu.addSubItem("eventsid", "Masquerade Ball-2007", "Masquerade Ball-2007",  "http://www.fortworthmargaritasociety.com/hallowballflyers.2007.html", "");
	menu.addSubItem("eventsid", "Print Masquerade Ball Flyer", "Masquerade Ball Print Flyer",  "http://www.fortworthmargaritasociety.com/Flyers/halloweenballflyer2007.pdf", "");
	menu.addSubItem("eventsid", "Benevolence 2007", "Benevolence 2007",  "http://www.fortworthmargaritasociety.com/benevolence.html", "");
	menu.addSubItem("eventsid", "Cocktails in the Garden 2007", "Cocktails in the Garden 2007",  "http://www.fortworthmargaritasociety.com/cocktailgarden.html", "");
	menu.addSubItem("eventsid", "School Supply Drive", "School Supply Drive",  "http://www.fortworthmargaritasociety.com/FORMS/2007FWMS_Forms/2007.SchoolSupplyDriveThankUletter.pdf", "");
	menu.addSubItem("eventsid", "Bears for Kids Picnic", "Bears for Kids Picnic",  "http://www.fortworthmargaritasociety.com/bearspicnic.html", "");	
	
	menu.addSubItem("eventsid2", "Margarita Ball", "",  "http://www.fortworthmargaritasociety.com/margaritaball.html", "");
	menu.addSubItem("eventsid2", "Auction Requests-2007", "",  "http://www.fortworthmargaritasociety.com/FORMS/2007FWMS_Forms/LettertoMembers-Directors.pdf", "");
	menu.addSubItem("eventsid2", "Silent Auction and Platinum Table Sponsorship", "Silent Auction and Sponsorship/Platinum Tables ",  "http://www.fortworthmargaritasociety.com/margaritaball_forms.html", "");
	menu.addSubItem("eventsid2", "Platinum Table Sponsorships", "Platinum Table Sponsorship",  "http://www.fortworthmargaritasociety.com/2007FWMS_Forms/platinumtablesponsorsattheBall.doc", "");	
	menu.addSubItem("eventsid2", "Silent Auction Donations Received", "Silent Auction Donations Received",  "http://www.fortworthmargaritasociety.com/2007FWMS_Forms/2007SilentAuctionDonations.rec.doc", "");	
    menu.addSubItem("eventsid2", "Make Donations Online", "",  "http://www.fortworthmargaritasociety.com/donationthanks.html", "");
	menu.addSubItem("eventsid2", "Margarita Ball Toy Distribution", "",  "http://www.fortworthmargaritasociety.com/2006toydrive.html", "");

	menu.addSubItem("membershipid", "Directors", "",  "http://www.fortworthmargaritasociety.com/directors.html", "");
	menu.addSubItem("membershipid", "Members", "",  "http://www.fortworthmargaritasociety.com/members.html", "");
	menu.addSubItem("membershipid", "Membership Info", "Membership Info",  "http://www.fortworthmargaritasociety.com/membership.html", "");
	menu.addSubItem("membershipid", "Membership Forms", "Membership Forms",  "http://www.fortworthmargaritasociety.com/membershipforms.html", "");	
	
	menu.addSubItem("miscid", "Photo Gallery", "",  "http://www.fortworthmargaritasociety.com/Gallery/", "");
	
	menu.addSubItem("miscid2", "Sponsors", "",  "http://www.fortworthmargaritasociety.com/sponsors.html", "");	
	
	menu.addSubItem("miscid3", "Contact Us", "",  "http://www.fortworthmargaritasociety.com/contact.html", "");
	
	menu.addSubItem("miscid3", "Join Newsletter", "",  "http://www.fortworthmargaritasociety.com/newsletter.html", "");
	
	
	

	menu.showMenu();
}