
tk = new Timekeep();			// DO NOT EDIT THIS LINE
tk.start("Create all menus");	// DO NOT EDIT THIS LINE

configTxt();					// DO NOT EDIT THIS LINE
//////////////////////////////////////////////////////////////////
function configTxt(){

	tk.start("Create menu 0");

//  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();
	styleT = new NavButtonStyleFactory("styleT");
	styleT = styleT.getRef();
	styleT.textAlignCold  = "center";
	styleT.textAlignHot   = "center";
	styleT.styleWrite();

//	Instantiate (create) a menu object
//	menu1 = new NavMenu([locX], [locY], ["styleName"]);
	menu0 = new NavMenu(243,60);

//	Add buttons to the menu
//	menu.addButton(barNum, title, target, parentBarNum, parentBtnNum, styleRef, horzOrVert, persist)
	btn = menu0.addButton(0, "Calendar", "Calendar/Calendar.html", null, null, styleT, "H"); // sets style and orientation for bar
	btn = menu0.addButton(0, "Scores", "Matches.htm");
//	btn = menu0.addButton(0, "SCC <br> Clubs", "Target01.html");
	btn = menu0.addButton(0, "Information", "information.htm");
	btn = menu0.addButton(0, "Links", "links.htm");
	btn = menu0.addButton(0, "Training", "training.htm");
//	btn = menu0.addButton(0, "Classifieds", "classadd.htm");
	btn = menu0.addButton(0, "Contacts", "...");
	
	btn = menu0.addButton(1, "BAPS", "Matches.htm#BAPS", 0, 1); // default style and orientation for bar
	btn = menu0.addButton(1, "BAPS Steel Challenge", "Matches.htm#BAPS Steel Challenge");
	btn = menu0.addButton(1, "Baileys", "Matches.htm#Baileys");
	btn = menu0.addButton(1, "Brazosland", "Matches.htm#Brazosland");
	btn = menu0.addButton(1, "CLASS", "Matches.htm#CLASS");
	btn = menu0.addButton(1, "Greenwood", "Matches.htm#Greenwood");
	btn = menu0.addButton(1, "Impact Generation", "Matches.htm#Impact");
	btn = menu0.addButton(1, "Nite Owls", "Matches.htm#NiteOwls");
	btn = menu0.addButton(1, "Range Masters", "Matches.htm#RangeMasters");
	btn = menu0.addButton(1, "SETPS", "Matches.htm#SETPS");
	btn = menu0.addButton(1, "SETPS Steel Challenge", "Matches.htm#SETPS Steel Challenge");
	btn = menu0.addButton(1, "Space City Challenge", "SCC/SCCmatch/SCCMatches.htm");
	
	btn = menu0.addButton(2, "Who Is TSS?", "Who is TSS.htm", 0, 2); // default style and orientation for bar
	btn = menu0.addButton(2, "New Shooters", "new_shooter.htm", 0, 2); // default style and orientation for bar
	btn = menu0.addButton(2, "Space City Challenge", "/SCC/SCC_2010/ssc_2010.htm");
	btn = menu0.addButton(2, "TSS Business", "section_businss_history.htm");
	btn = menu0.addButton(2, "Photos", "http://www.texassouthsection.com/Photos/index.html");
	btn = menu0.addButton(2, "Movies", "Movies.htm")
	btn = menu0.addButton(2, "Reloading Service", "Dennis Reloading.htm")
	btn = menu0.addButton(2, "Classifieds", "classadd.htm")

	btn = menu0.addButton(4, "Manny Bragg", "Training_Manny.htm", 0, 4); // default style and orientation for bar
	btn = menu0.addButton(4, "Tony Phan", "Training_TonyPhan.htm");

	btn = menu0.addButton(5, "USPSA", "http://www.uspsa.org", 0, 3); // default style and orientation for bar
	btn = menu0.addButton(5, "USPSA-Area 4", "http://www.uspsa4.org");
	btn = menu0.addButton(5, "IPSC", "http://www.IPSC.org");
	btn = menu0.addButton(5, "Rangemasters", "http://home.comcast.net/~walterlaich/rangemasters.htm");
	btn = menu0.addButton(5, "Brazosland Pistoleros", "http://www.brazoslandpistoleros.com/");
	btn = menu0.addButton(5, "Impact Zone", "http://theimpactzonerange.com/");
	btn = menu0.addButton(5, "Other Clubs", "club_link.htm");
	btn = menu0.addButton(5, "PSC", "http://www.psc-range.com/");
	btn = menu0.addButton(5, "Central Texas Clubs", "CentralTexasLinks.htm");
	btn = menu0.addButton(5, "Map/Info Texas Shooting Clubs", "http://maps.google.com/maps/ms?ie=UTF8&hl=en&msa=0&msid=103406751051132963776.000435a1d1c9ffa73485e&ll=30.713504,-98.525391&spn=10.418288,11.118164&z=6&om=1");
	btn = menu0.addButton(5, "Classifier Calculator", "http://www.classifiercalc.com/");
	btn = menu0.addButton(5, "Power Custom USA", "http://www.powercustomusa.com/");
	
	btn = menu0.addButton(6, "Section Coordinator - Jack Sweet", "mailto:tsssc@texassouthsection.com", 0, 5); 
	btn = menu0.addButton(6, "Assist. Coordinator - Steve Deardorff", "mailto:assistsc@texassouthsection.com");
	btn = menu0.addButton(6, "Webmaster - Tracy Lewellyn", "mailto:webmaster@texassouthsection.com");
	btn = menu0.addButton(6, "Match Scores Team", "mailto:Scores@texassouthsection.com");

	
}

