/* submenus array for Texasonline */

/* Menu class constructor */
function Menu(sPath,sText,aSubMenus){
	this.sPath = sPath;
	this.sText = sText;
	if(typeof aSubMenus != 'undefined') this.aSubMenus = aSubMenus;
}

/* add default class property */
Menu.prototype.aSubMenus = [];

var aSubMenus = [
	new Menu("/category.jsp?categoryId=1","About Texas",
		[
			new Menu("/category.jsp?categoryId=1.1","Flags and Symbols"),
			new Menu("/category.jsp?categoryId=1.2","General Information"),
			new Menu("/category.jsp?categoryId=1.3","Geography"),
			new Menu("/category.jsp?categoryId=1.4","History and Culture")
		]
	),
	new Menu("/category.jsp?categoryId=2","Business Services",
		[
			new Menu("/category.jsp?categoryId=2.1","Agriculture",
				[
					new Menu("/category.jsp?categoryId=2.1.1","Financial Assistance"),
					new Menu("/category.jsp?categoryId=2.1.2","General Information"),
					new Menu("/category.jsp?categoryId=2.1.3","K-12"),
					new Menu("/category.jsp?categoryId=2.1.4","Libraries")
				]
			),
			new Menu("/category.jsp?categoryId=2.2","Area Chamber and BBB"),
			new Menu("/category.jsp?categoryId=2.3","Car Buying/Home Buying Issues"),
			new Menu("/category.jsp?categoryId=2.4","Consumer Protection",
				[
					new Menu("/category.jsp?categoryId=2.4.1","Financial Assistance"),
					new Menu("/category.jsp?categoryId=2.4.2","General Information"),
					new Menu("/category.jsp?categoryId=2.4.3","K-12"),
					new Menu("/category.jsp?categoryId=2.4.4","Libraries")
				]
			),
			new Menu("/category.jsp?categoryId=2.5","General Information",
				[
					new Menu("/category.jsp?categoryId=2.5.1","Financial Assistance")
				]
			),
			new Menu("/category.jsp?categoryId=2.6","Licenses and Permits"),
			new Menu("/category.jsp?categoryId=2.7","Small Business"),
			new Menu("/category.jsp?categoryId=2.8","Starting a Business"),
			new Menu("/category.jsp?categoryId=2.9","State and Local Bid Opportunities",
				[
					new Menu("/category.jsp?categoryId=2.9.1","Financial Assistance"),
					new Menu("/category.jsp?categoryId=2.9.2","General Information"),
					new Menu("/category.jsp?categoryId=2.9.3","K-12")
				]
			)
		]
	),
	new Menu("/category.jsp?categoryId=3","Education and Training",
		[
			new Menu("/category.jsp?categoryId=3.1","Apply to a College"),
			new Menu("/category.jsp?categoryId=3.2","Colleges and Universities"),
			new Menu("/category.jsp?categoryId=3.3","Community and Junior Colleges",
				[
					new Menu("/category.jsp?categoryId=3.3.1","Financial Assistance"),
					new Menu("/category.jsp?categoryId=3.3.2","General Information"),
					new Menu("/category.jsp?categoryId=3.3.3","K-12"),
					new Menu("/category.jsp?categoryId=3.3.4","Libraries"),
					new Menu("/category.jsp?categoryId=3.3.5","Military")
				]
			)
		]
	),
	new Menu("/category.jsp?categoryId=4","Employment and Labor",
		[
			new Menu("/category.jsp?categoryId=4.1","General Information"),
			new Menu("/category.jsp?categoryId=4.2","Job Opportunities"),
			new Menu("/category.jsp?categoryId=4.3","Job Training"),
			new Menu("/category.jsp?categoryId=4.4","Labor Laws"),
			new Menu("/category.jsp?categoryId=4.5","Retirement Benefits"),
			new Menu("/category.jsp?categoryId=4.6","Unemployment Benefits"),
			new Menu("/category.jsp?categoryId=4.7","Workers' Compensation")
		]
	)
];
