$(document).ready(function () {
	// detect gmaps compatible browser
	if (GBrowserIsCompatible()) {
		//create map using div id = map
		$('#zip').keyup(function() {
			if (this.value.length == 5) {
				$(this).blur();
				if (!jmmap.map) {
					jmmap.setup('map'); // (div)
				}
				jmmap.showStoresInZip(this.value,true); // zip code, pickClosest
			}
		});
		if ($('#storeno').val()) {
			if (!jmmap.map) {
				jmmap.setup('map'); // (div)
			}
			jmmap.showSingleStore($('#storeno').val())
		}
		window.onunload = GUnload;
	}
});