/* searchTerms
 * This is the data file which stores or loads term names to search.
 * It effectively acts as a database.
 *
 * ALWAYS save a backup of this file when editing.
 * If this data structure is broken, Search may no longer work.
 *
 */
 
/*
	Copy this template, and fill it in.
	
	{
		type: "webpage",
		location: "path/from/site/root.html",
		title: "Destination Page Title",
		matches: [
			"comma", "separated", "words", "or phrases"
		]
	
	}

	Be careful with commas!  If this is not the last search term in the list, you need a comma
	after the '}', then you are ready to add the next page.

 */

searchTerms = searchTerms.concat([

	{ 
		type: "webpage",
		location: "AdvEng/index.html",
		title: "Advanced Engineering",
		matches: [
			"Problem Solving", "Product Validation", "Advanced Analysis", "Laboratory Services", "Accreditation"
		]
	},
	
	{
		type: "webpage",
		location: "TS16949/index.html",
		title: "TS-16949",
		matches: [
			"Quality", "TS-16949", "TS16949", "TS 16949", "Certification"
		]
	
	},
	
	{
		type: "webpage",
		location: "grandrapids/quality.html",
		title: "Quality at Grand Rapids",
		matches: [
			"Quality", "Continuous Improvement", "Environmental", "Compliance", "Lean Manufacturing"
		]
	
	},
	
	{
		type: "webpage",
		location: "grandrapids/capabilities.html",
		title: "Capabilities at Grand Rapids",
		matches: [
			"Capabilities", "Quality", "Customer Service", "Stamping", "Presses"
		]
	
	},
	
	{ 
		type: "webpage",
		location: "AdvEng/scope.html",
		title: "Laboratory Services",
		matches: [
			"Accreditation", "Product Testing", "Quality"
		]
	},
	
	{
		type: "webpage",
		location: "grandrapids/value.html",
		title: "Value Added at Grand Rapids",
		matches: [
			"Technology", "MIG Welding", "Welding", "Tapping", "Grinding", "CNC", "Studding", "Automated Assembly"
		]
	
	},
	
	{
		type: "webpage",
		location: "grandrapids/flanges.html",
		title: "Flange Catalog",
		matches: [
			"Flages"
		]
	
	},
	
	{
		type: "webpage",
		location: "grandrapids/about.html",
		title: "About Grand Rapids, Michigan",
		matches: [
			"Grand Rapids", "Stamping", "Blanked Components", "United States", "Michigan"
		]
	
	},
	
	{
		type: "webpage",
		location: "franklin/index.html",
		title: "About Franklin, Indiana",
		matches: [
			"United States", "Franklin", "Indiana", "Stamping", "Welding", "Manufacturing"
		]
	
	},
	
	{
		type: "webpage",
		location: "hungary/index.html",
		title: "About Apostag, Hungary",
		matches: [
			"Manufacturing", "Metal stamping", "Automotive"
		]
	
	},
	
	{
		type: "webpage",
		location: "hungary/capabilities.html",
		title: "Capabilities at Apostag, Hungary",
		matches: [
			"Presses", "Stamping", "Automotive"
		]
	
	},
	
	{
		type: "webpage",
		location: "hungary/quality.html",
		title: "Quality at Apostag, Hungary",
		matches: [
			"Quality", "CMM", "TS-16949", "TS16949", "TS 16949"
		]
	
	},
	
	{
		type: "webpage",
		location: "hungary/value.html",
		title: "Value Added at Apostag, Hungary",
		matches: [
			"Welding", "Assembly", "Stitching", "Stapling", "Studding", "Tapping", "Riveting", "Deburring"
		]
	
	},
	
	{
		type: "webpage",
		location: "mexico/index.html",
		title: "About Monterrey, Mexico",
		matches: [
			"Assemblies", "Stamped Products", "Automotive"
		]
	
	},
	
	{
		type: "webpage",
		location: "mexico/capabilities.html",
		title: "Capabilities at Monterrey, Mexico",
		matches: [
			"Metal", "Stamping", "Progressive", "Transfer"
		]
	
	},
	
	{
		type: "webpage",
		location: "mexico/quality.html",
		title: "Quality at Monterrey, Mexico",
		matches: [
			"Quality", "CMM", "TS-16949", "TS16949", "TS 16949", "Poka Yoke", "Lean Manufacturing"
		]
	
	},
	
	{
		type: "webpage",
		location: "mexico/value.html",
		title: "Value Added at Monterrey, Mexico",
		matches: [
			"Tool Design", "Prototyping", "Research", "Development", "Welding", "Riveting"
		]
	
	},
	
	{
		type: "webpage",
		location: "poland/index.html",
		title: "About Katowice, Poland",
		matches: []
	
	},
	
	{
		type: "webpage",
		location: "germany/index.html",
		title: "About Bolanden, Germany",
		matches: []
	
	},
	
	{
		type: "webpage",
		location: "shanghai/index.html",
		title: "About Shanghai, China",
		matches: []
	
	}
	
	
	
]);