
configPop();					// DO NOT EDIT THIS LINE

//////////////////////////////////////////////////////////////////
function configPop(){

	tk = new Timekeep();		// DO NOT EDIT THIS LINE
	tk.start("Create menu");

//  styleDefault should always be defined because it is used in
//      menu.addButton() if the styleRef parameter is omitted
//	Instantiate (create) a button style object
	styleDefault = new NavButtonStyleFactory();
	styleDefault = styleDefault.getRef();
	styleDefault.styleWrite();
	styleM = new NavButtonStyleFactory("styleMain");
	styleM = styleM.getRef();
	styleM.textAlignCold = "center";
	styleMtextAlignHot   = "center";
	styleM.styleWrite();

//	Instantiate (create) a menu object
//	menu1 = new NavMenu([locX], [locY], styleRef);
	menu1 = new NavMenu(10, 10);

//	Add buttons to the menu
//	menu.addButton(barNum, title, target, parentBarNum, parentBtnNum, horzOrVert, styleRef, persist)
	btn = menu1.addButton(0, "Home Page - Site Map", "index.html", null, null, styleM, "H"); // sets style and orientation for bar
	btn = menu1.addButton(0, "Products and Pricing", "index.html");	
	btn = menu1.addButton(0, "Secure On-Line Shopping","https://hygenaire.hosting-advantage.com/catalog/default.php");
	btn = menu1.addButton(0, "About Hygenaire", "about.html"); 
	btn = menu1.addButton(0, "Mold and IAQ Information", "index.html");
	btn = menu1.addButton(0, "Contact Us", "contact.html");
	btn = menu1.addButton(1, "Air Purifier", "botanicalairpurifier.html", 0, 1); // default style and orientation
	btn = menu1.addButton(1, "Air Cleaner", "airfilters.html");
	btn = menu1.addButton(1, "Filter Solution", "filtersolution.html");
	btn = menu1.addButton(1, "Test Kits", "testkits.html");
	btn = menu1.addButton(1, "Setup Instructions", "setup_instructions.pdf");
	btn = menu1.addButton(1, "Remediation Tools", "remediationtools.html");  
	btn = menu1.addButton(2, "IAQ Guide", "indoorairinfo.html", 0,4);
	btn = menu1.addButton(2, "Mold Guide", "A Brief Guide to Mold.html");
	btn = menu1.addButton(2, "Important Links", "links.html");
	
	
	
}
