
	var markersmerchantgallery  = new Array();
	function initializemerchantgallery() {
		var latlng;
			latlng = new GLatLng(36.6038817, -121.8930083);
			markersmerchantgallery[0] = createMarker(latlng, "<img src='products/thumbnail_Dominicos-logo-300x.jpg' align='left' alt='' /><p>Domenico`s<br />50 Fisherman`s Wharf<br />Monterey, CA<br />831-372-3655</p>", "yellow", "http://localhost/squirrelcart/store.php/products/domenicos");
			latlng = new GLatLng(36.6038603, -121.8930233);
			markersmerchantgallery[1] = createMarker(latlng, "<img src='products/thumbnail_Cafe-Fina-logo-300x.jpg' align='left' alt='' /><p>Cafe Fina<br />47 Fisherman`s Wharf<br />Monterey, CA<br />831-372-5200</p>", "yellow", "http://localhost/squirrelcart/store.php/products/cafe-fina");
			latlng = new GLatLng(36.9518802, -121.8787526);
			markersmerchantgallery[2] = createMarker(latlng, "<img src='products/thumbnail_Seascape Beach Resort logo.jpg' align='left' alt='' /><p>Seascape Beach Resort <br />1 Seascape Resort Drive<br />Aptos, CA<br />831-662-7120</p>", "yellow", "http://localhost/squirrelcart/store.php/products/seascape-beach-resort");
	}
	function addmerchantgallery() {
		for (var i = 0; i < markersmerchantgallery.length; i++) {	
			map.addOverlay(markersmerchantgallery[i]);
		}
	}
	function removemerchantgallery() {
		for (var i = 0; i < markersmerchantgallery.length; i++) {
			 map.removeOverlay(markersmerchantgallery[i]);
		}
	}
	