function foodChecker() {
if (document.petfoodForm.age.value < 2) {

	window.location="search%20results/puppy.htm"

	} else if (document.petfoodForm.age.value > 1) {

		if (document.petfoodForm.skin.value == 2) {
			
			window.location="adult%20lamb.htm" // adult lamb + rice		
		
		} else if (document.petfoodForm.skin.value == 1) {

			if (document.petfoodForm.age.value == 2) {

				if (document.petfoodForm.condition.value < 3) {
					
					if (document.petfoodForm.active.value > 1) {

						window.location="Adult%20Energy.htm"	// adult energy

					} else if (document.petfoodForm.active.value == 1) {

						window.location="search%20results/lamb.htm" // lamb/etc. submenu

					}
					
				} else if (document.petfoodForm.condition.value == 3) {	

					window.location="lowcal.htm" // adult low cal

				}

			} else if (document.petfoodForm.age.value > 2) {
				
				if (document.petfoodForm.condition.value < 3) {

					if (document.petfoodForm.active.value > 1) {

						window.location="Adult%20Energy.htm"	// adult energy

					} else if (document.petfoodForm.active.value == 1) {

						if (document.petfoodForm.age.value == 3) {

							window.location="search%20results/lamb.htm" // lamb/etc. submenu

						} else if (document.petfoodForm.age.value == 4) {

							window.location="lowcal.htm" // adult senior

						}

					}

				} else if (document.petfoodForm.condition.value == 3) {	

					window.location="lowcal.htm" // adult low cal

				}

			}

		}

	}
}

