//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("home", "AVS Home", "AVS Home",  null, null);
	menu.addItem("contact", "Contact Us", "Contact Us",  null, null);
	menu.addItem("company", "Company Info", "Company Info",  null, null);
	menu.addItem("products", "Products", "Products",  null, null);
	menu.addItem("info", "Information On Background Screening", "Information On Background Screening",  null, null);
	menu.addItem("partners", "Business Partners", "Business Partners",  null, null);

	menu.addSubItem("home", "AVS Home", "AVS Home",  "main.htm", "mainFrame");

	menu.addSubItem("contact", "Business Contacts", "Business Contacts",  "bcontact.htm", "mainFrame");
	
	menu.addSubItem("company", "Who We Are", "Who We Are",  "who.htm", "mainFrame");
	menu.addSubItem("company", "Customer Service", "Customer Service",  "ccontact.htm", "mainFrame");
	menu.addSubItem("company", "Privacy Policy", "Privacy Policy",  "privacy.htm", "mainFrame");
	menu.addSubItem("company", "FAQ's", "FAQ's",  "faq.htm", "mainFrame");
	menu.addSubItem("company", "New Customer Call Back Form", "New Customer Call Back Form",  "sign.htm", "mainFrame");

	menu.addSubItem("products", "What Is Verify POS?", "What Is Verify POS?",  "verify.htm", "mainFrame");
	menu.addSubItem("products", "Combo Criminal Search", "Combo Criminal Search",  "combo.htm", "mainFrame");
	menu.addSubItem("products", "Nationwide Criminal History", "Nationwide Criminal History",  "nch.htm", "mainFrame");
	menu.addSubItem("products", "Motor Vehicle Report", "Motor Vehicle Report",  "mvr.htm", "mainFrame");
	menu.addSubItem("products", "Social Security Verification", "Social Security Verification",  "ssn.htm", "mainFrame");
	menu.addSubItem("products", "Credit Check", "Credit Check",  "credit.htm", "mainFrame");

	menu.addSubItem("info", "Does Screening Work?", "Does Screening Work?",  "screening.htm", "mainFrame");
	menu.addSubItem("info", "Solutions", "Solutions",  "solutions.pdf", "mainFrame");
	menu.addSubItem("info", "Vertical Markets", "Vertical Markets",  "vertical.htm", "mainFrame");
	menu.addSubItem("info", "Pertinent Facts", "Pertinent Facts",  "pertinent.htm", "mainFrame");
	menu.addSubItem("info", "Avoiding Liability", "Avoiding Liability for Negligent Hiring",  "avoiding.htm", "mainFrame");
	menu.addSubItem("info", "Workplace Violence", "Workplace Violence",  "violence.htm", "mainFrame");
	menu.addSubItem("info", "Point Of Sale Technology", "Point Of Sale Technology",  "pos.htm", "mainFrame");

	menu.addSubItem("partners", "Business Partners", "Business Partners",  "links1.htm", "mainFrame");

	menu.showMenu();
}