/* *******************************************
*  Customize to your specific menu,
*  one group per main menu item
*
*  menu[#] = new menuGroup(# submenu links);
*  menu[#].item[#] = new menuItem(link text, URL, optional title);
*
********************************************** */

function setMenuVars() {
	mCount = 7;   // set to the number of main menu items
	menu   = new makeArray(mCount);

	// First menu
	menu[1] = new menuGroup(13); // Rods
	menu[1].item[1] = new menuItem("Why We're BETTER!","index.php?p=better","Why We're BETTER!");
	menu[1].item[2] = new menuItem("Series Overview","index.php?p=rods","Series Overview");
	menu[1].item[3] = new menuItem("Series Comparison","index.php?p=comparison","Series Comparison");
	menu[1].item[4] = new menuItem("McKenzie 2pc","index.php?p=mckenzie2pc","McKenzie 2pc");
	menu[1].item[5] = new menuItem("McKenzie 4pc","index.php?p=mckenzie4pc","McKenzie 4pc");
	menu[1].item[6] = new menuItem("McKenzie 5pc","index.php?p=mckenzie5pc","McKenzie 5pc");
	menu[1].item[7] = new menuItem("Fall River","index.php?p=fallriver","Fall River");
	menu[1].item[8] = new menuItem("Metolius","index.php?p=metolius","Metolius");
	menu[1].item[9] = new menuItem("Deschutes","index.php?p=deschutes","Deschutes");				
	menu[1].item[10] = new menuItem("Deschutes XL","index.php?p=deschutesxl","Deschutes XL");
	menu[1].item[11] = new menuItem("Deschutes 2H","index.php?p=deschutes2h","Deschutes 2H");	
	menu[1].item[12] = new menuItem("McKenzie Spey","index.php?p=spey","McKenzie Spey");
	menu[1].item[13] = new menuItem("Warranty Info","index.php?p=warranty","Warranty Info");
	
		// Second menu
	menu[2] = new menuGroup(4); // Fitting
	menu[2].item[1] = new menuItem("Fitting Process","index.php?p=fitting","Fitting Process");
	menu[2].item[2] = new menuItem("How It Works","index.php?p=fittinghow","How Custom Fitting Works");
	menu[2].item[3] = new menuItem("Questionnaires","index.php?p=fittingquest","Fitting Questionnaires");
	menu[2].item[4] = new menuItem("Get Fit Now!","index.php?p=fittingnow","Get Fit Now!");
	
	// Second menu
	menu[3] = new menuGroup(9); // Custom
	menu[3].item[1] = new menuItem("WHY CUSTOM?","index.php?p=custom","Why Custom");
	menu[3].item[2] = new menuItem("Standard Features","index.php?p=features","Standard Features");	
	menu[3].item[3] = new menuItem("Custom Options","index.php?p=customoptions","Custom Options");
	menu[3].item[4] = new menuItem("Reelseats","index.php?p=customreelseats","Reelseats");
	menu[3].item[5] = new menuItem("Grips","index.php?p=customgrips","Grips");
	menu[3].item[6] = new menuItem("Guides","index.php?p=customguides","Guides");
	menu[3].item[7] = new menuItem("Thread","index.php?p=customthread","Thread");
	menu[3].item[8] = new menuItem("Bag & Tube","index.php?p=bagandtube","Bag and Tube");
	menu[3].item[9] = new menuItem("Other Options","index.php?p=customother","Other Custom Options");


	// Third menu
	menu[4] = new menuGroup(7); // Tech
	menu[4].item[1] = new menuItem("Construction Tour","index.php?p=techconstruction","Construction Tour");
	menu[4].item[2] = new menuItem("Reelseat Hardware","index.php?p=techhardware","Reelseat Hardware");
	menu[4].item[3] = new menuItem("Reelseat Inserts","index.php?p=techinserts","Reelseat Inserts");
	menu[4].item[4] = new menuItem("Stripping Guides","index.php?p=techstripper","Stripping Guides");
	menu[4].item[5] = new menuItem("Ceramic Guides","index.php?p=techceramic","Ceramic Fly Guides");
	menu[4].item[6] = new menuItem("Snake Guides","index.php?p=techsnake","Snake Guides");
	menu[4].item[7] = new menuItem("Graphite Modulus","index.php?p=modulus","Graphite Modulus");
	
	
	// Fourth menu
	menu[5] = new menuGroup(7); // Shop
	menu[5].item[1] = new menuItem("Online Store!","http://www.thelongestcast.com/catalog/","Online Store!");
	menu[5].item[2] = new menuItem("Summer Specials","http://www.thelongestcast.com/catalog/specials.php","Summer Specials");
	menu[5].item[3] = new menuItem("Ordering Info","index.php?p=order","Ordering Info");
	menu[5].item[4] = new menuItem("Retail Shops","index.php?p=shops","Shops"); 
	menu[5].item[5] = new menuItem("Set Up a Demo!","index.php?p=demo","Demo"); 
	menu[5].item[6] = new menuItem("Current Demo Rods","index.php?p=instock","Available Demo Rods");
	menu[5].item[7] = new menuItem("Ask a Question","index.php?p=contact","Contact Us!");

// Fifth menu
	menu[6] = new menuGroup(4); // About Us
	menu[6].item[1] = new menuItem("Staff","index.php?p=staff","Our Staff");
	menu[6].item[2] = new menuItem("History","index.php?p=history","Our History");
	menu[6].item[3] = new menuItem("Ask a Question","index.php?p=contact","Contact Us!"); 
	menu[6].item[4] = new menuItem("Photo Gallery","index.php?p=gallery","Photo Gallery"); 


// Fifth menu
	menu[7] = new menuGroup(4); // Contact
	menu[7].item[1] = new menuItem("Email Us!","index.php?p=contact","Email");
	menu[7].item[2] = new menuItem("Call Us!","index.php?p=contact","Call Us!");
	menu[7].item[3] = new menuItem("Set Up a Demo!","index.php?p=demo","Demo"); 
	menu[7].item[4] = new menuItem("Guide Program","index.php?p=guide","Guide Program");




}
