﻿$(document).ready(function () {
	// scroll to first non-food item if hash mark contains cookware
	if (false && location.hash == "#cookware") {
		var top = -1;
		$("input[value='False']").each(function () {
			var parentTop = $(this).parent().offset().top;
			if (top == -1 || top < parentTop)
				top = parentTop;
		});
		$("body,html").animate({
			scrollTop: top
		}, 1000);
	}

	$("#searchText").keydown(function (event) {
		if (event.which || event.keyCode) {
			if ((event.which == 13) || (event.keyCode == 13)) {
				$("#btnGo").click(); 
				return false;
			}
		} else {
			return true 
		};
	});
});
