// JavaScript Document

function searchByMapLoad() {
	
	var map = document.getElementById("search-by-map");
	
	if (map && GBrowserIsCompatible()) {
		map = new GMap2(map);
		map.setCenter(new GLatLng(54.5372, -9.2), 5);
		map.disableDragging();
		map.disableDoubleClickZoom();
		
		GEvent.addListener(map, "click", function(marker, point) {
			location.href = "/stockist-results?lat="+point.y+"&lon="+point.x+"&st=map&action=find";
		});
	}

}

