var searchAdditions = {

	// General form:
	//
	// 'term_to_look_for': ['term_to_add'],
	//       OR
	// 'term_to_look_for': ['term_to_add', 'term_to_add', 'term_to_add'],
	//
	// however, make sure the last line does not end in a comma!

	
	//'ball': ['baseball', 'basketball', 'football'] // last line shouldnt end in a comma

	'neck': ['tie'],
	'knit': ['cap'],
	'baby': ['baby'], // hack: make sure 'baby' comes first, not any plurals
	'beer': ['mug']

};
