//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("ACT", "Crawfordsville Chiro Team", "Crawfordsville Chiro Team",  null, null);
	menu.addItem("Tell_Me", "Tell Me About...", "Tell Me About...",  null, null);
	menu.addItem("Events", "Calendar of Events", "Calendar of Events",  null, null);
	menu.addItem("Links", "Suggested Links", "Suggested Links",  null, null);
	
	menu.addSubItem("ACT", "Our Team", "Our Team",  "ourteam.htm");
	menu.addSubItem("ACT", "Contact Us", "Contact Us",  "contactus.htm");
	menu.addSubItem("ACT", "Frequently Asked Questions", "Frequently Asked Questions",  "faq.htm");
	menu.addSubItem("ACT", "Insurance Providers", "Insurance Providers",  "insurance.htm");
	menu.addSubItem("ACT", "HIPPA", "HIPPA", "hippa.htm");
	
	menu.addSubItem("Tell_Me", "Disc Injuries", "Disc Injuries",  "disc.htm");
	menu.addSubItem("Tell_Me", "Headache", "Headache",  "nerve.htm");
	menu.addSubItem("Tell_Me", "Low Back", "Low Back",  "back.htm");
	menu.addSubItem("Tell_Me", "Neck Pain", "Neck Pain",  "neck.htm");
	menu.addSubItem("Tell_Me", "Sciatica", "Sciatica",  "sciatic.htm");
	menu.addSubItem("Tell_Me", "Whiplash", "Whiplash",  "whiplash.htm");
	menu.addSubItem("Tell_Me", "DRX 9000", "DRX 9000",  "DRX9000.htm");
	menu.addSubItem("Tell_Me", "Massage Therapy", "Massage Therapy",  "massage-therapy.htm");
	
	menu.addSubItem("Events", "Upcoming Events", "Upcoming Events",  "events.htm");
	menu.addSubItem("Events", "News", "News",  "news.htm");

	menu.addSubItem("Links", "BodyZone", "Bodyzone",  "http://www.bodyzone.com/");
	menu.addSubItem("Links", "Back2Basics", "Back2Basics",  "http://www.chiropracticonline.com/back2basics.htm");
	

	menu.showMenu();
}