//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", "HOME", "HOME", "index.htm", null);
	menu.addItem("newsid", "ABOUT US", "ALL ABOUT US",  null, null);
	menu.addItem("freedownloadid", "CLASSES", "CLASSES WE OFFER",  null, null);
	menu.addItem("searchengineid", "CLASS SCHEDULE", "CLASS SCHEDULE",  null, null);
	menu.addItem("miscid", "TRAINING TIPS", "TRAINING TIPS",  null, null);
    menu.addItem("additional", "ETHICS", "ETHICS",  null, null);
	menu.addItem("additional2", "MISC", "MISCELLEANEOUS",  null, null);
	menu.addItem("additional4", "OTHER LINKS", "OTHER LINKS",  "links.htm", null);
	
	
	menu.addSubItem("newsid", "Our Philosophy", "Our Philosophy",  "philosophy.htm", "");
	menu.addSubItem("newsid", "Who We Are", "Who We Are",  "whoweare.htm", "");
	menu.addSubItem("newsid", "Meet Our Instructors", "Meet Our Instructors",  "Bios.htm", "");
	menu.addSubItem("newsid", "Contact Info", "Contact Info",  "Contacts.htm", "");
	
    menu.addSubItem("freedownloadid", "Concealed Handgun License course", "Concealed Handgun License course",  "coursechl.htm", "");
	menu.addSubItem("freedownloadid", "First Steps (pistol)", "First Steps (pistol)",  "coursefirststepspistol.htm", "");
	menu.addSubItem("freedownloadid", "NRA Basic Pistol", "NRA Basic Pistol",  "coursebasicpistol.htm", "");
	menu.addSubItem("freedownloadid", "NRA Personal Protection In The Home", "NRA Personal Protection In The Home",  "coursepersonalprotection.htm", "");
    menu.addSubItem("freedownloadid", "NRA Personal Protection Outside The Home", "NRA Personal Protection Outside The Home",  "coursepersonalprotectionoutside.htm", "");

    menu.addSubItem("freedownloadid", "NRA Home Firearm Safety", "NRA Home Firearm Safety",  "coursehfs.htm", "");
    menu.addSubItem("freedownloadid", "NRA Refuse To Be A Victim", "NRA Refuse To Be A Victim",  "coursertbav.htm", "");	
    menu.addSubItem("freedownloadid", "Personal Safety Options", "Personal Safety Options",  "coursepersonalsafetyoptions.htm", "");	
    menu.addSubItem("freedownloadid", "Advanced Concealed Carry", "Advanced Concealed Carry",  "courseadvancedconcealedcarry.htm", "");	
    menu.addSubItem("freedownloadid", "Advanced Concealed Carry 2", "Advanced Concealed Carry 2",  "courseadvancedconcealedcarry2.htm", "");	
	
    	
	
	
	menu.addSubItem("searchengineid", "2010 Schedule", "2010 Schedule",  "2010 training schedule.htm", "");

    menu.addSubItem("searchengineid", "Registration Form", "Registration Form",  "registration.htm", "");
    menu.addSubItem("searchengineid", "Contact Info", "Contact Info",  "Contacts.htm", "");
	
	
	menu.addSubItem("miscid", "Trigger Control", "Trigger Control",  "triggercontrol.htm", "");
	menu.addSubItem("miscid", "Awareness", "Awareness",  "awareness.htm", "");
	menu.addSubItem("miscid", "Defensive Shooting Under Pressure", "Defensive Shooting Under Pressure",  "defensiveshootingunderpressure.htm", "");
    menu.addSubItem("miscid", "Fighting Skills vs Shooting Skills", "Fighting Skills vs Shooting Skills",  "fightvsshootskills.htm", "");
	menu.addSubItem("miscid", "Lethal Force", "Lethal Force",  "lethalforce.htm", "");
	menu.addSubItem("miscid", "Muscle Memory", "Muscle Memory",  "musclememory.htm", "");
	menu.addSubItem("miscid", "Pepper Spray Basics", "Pepper Spray Basics",  "pepperspraybasics.htm", "");
	menu.addSubItem("miscid", "Selecting A Handgun", "Selecting A Handgun",  "selectingahandgun.htm", "");
	menu.addSubItem("miscid", "Holsters", "Holsters",  "holsters.htm", "");
	
	
	menu.addSubItem("additional", "Christians and Guns", "Christians and Guns",  "christiansandguns.htm", "");
	menu.addSubItem("additional", "Psychology of Self Defense", "Psychology of Self Defense",  "psychology.htm", "");
	menu.addSubItem("additional", "Your Responsibility", "Your Responsibility",  "responsibility.htm", "");
	menu.addSubItem("additional", "Women and Guns", "Women and Guns",  "women.htm", "");
	menu.addSubItem("additional", "THe Christian Warrior", "The Christian Warrior",  "christian warrior.htm", "");
	
	
	menu.addSubItem("additional2", "What Can Women Expect In Class?", "What Can Women Expect In Class?Women and Guns",  "women1.htm", "");
	
	

	
	menu.showMenu();
}