MyMap = new function() {
	
	this.init = function() {
		GoogleMap = new GMap(document.getElementById("Map"));
		//GoogleMap.setMapType(G_SATELLITE_MAP);
		GoogleMap.setMapType(G_PHYSICAL_MAP);
		GoogleMap.enableDoubleClickZoom();
		GoogleMap.enableContinuousZoom();
	} 
}