//google.load("maps", "2.x", {"language" : "de"});
	
		var map;
		var baseIcon;
		var geocoder;
		var marker;

	function loadGooglemap()
	{
		if (GBrowserIsCompatible())
		{
			map = new GMap2(document.getElementById("map"),{mapTypes:[G_PHYSICAL_MAP,G_NORMAL_MAP,G_SATELLITE_MAP]});
			baseIcon = new GIcon();
			baseIcon.shadow = "shadow";
			baseIcon.iconSize = new GSize(15,26);
			baseIcon.shadowSize = new GSize(26, 26);
			baseIcon.iconAnchor = new GPoint(7, 26);
			baseIcon.infoWindowAnchor = new GPoint(9, 2);
			baseIcon.infoShadowAnchor = new GPoint(18, 25);
			geocoder = new GClientGeocoder();
			// set default to first entry
			//map.setCenter(new GLatLng(50.733608, 7.097952), 10);
			map.setCenter(new google.maps.LatLng(46.800000, 8.850000), 7, G_PHYSICAL_MAP);
			// add controls
			map.addControl(new GLargeMapControl());
			map.addControl(new GMapTypeControl());
			//map.addControl(new GOverviewMapControl());
			map.enableContinuousZoom();
			map.enableDoubleClickZoom();
		}
	
	}

// Unload the map when the window is closed
$(document.body).unload(function(){ 
	GUnload(); 
});

