function karte() {
	if (GBrowserIsCompatible())
	{
		map = new GMap2(document.getElementById("home"));
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		marker = new Array(new Array('fewo', new GLatLng(53.90512192003091, 11.365710496902466), 'Unsere Ferienwohnung'),
						new Array('strand', new GLatLng(53.93476772509321, 11.370677947998047), 'Der Strand von Zierow ist<br>nur ca. 4 km entfernt.', new GLatLng(53.92455961120848, 11.370506286621094)),
						new Array('strandw', new GLatLng(53.930624138334714, 11.281242370605469), 'Der Strand in der Wohlenberger Wiek<br>ist ideal zum Baden und Planschen<br>Entfernung: 6km', new GLatLng(53.92587366686283, 11.3323974609375)),
						new Array('wismar', new GLatLng(53.89154303012242, 11.46599292755127), '<u>Wismar</u><br>Die sch&ouml;ne Hansestadt mit<br>historischem Stadtkern.<br>Entfernung: 6km', new GLatLng(53.90352909439226, 11.414451599121094)),
						new Array('mez', new GLatLng(53.902454534854506, 11.378939151763916), '<u>Mecklenburger Einkaufszentrum</u><br>Einkaufszentrum/Gewerbegebiet<br>Azt/Zahnarzt<br>Entfernung: 1,5km'),
						new Array('schwerin', new GLatLng(53.629167555250405, 11.399688720703125), '<u>Schwerin</u><br>Landeshauptstadt<br>Residenzschloss<br>Entfernung: 30km', new GLatLng(53.75439486837337, 11.3983154296875)),
						new Array('kunst', new GLatLng(53.89695488571692, 11.350078582763672), '<u>&quot;Kunst am Weg&quot;</u><br>st&auml;ndige und frei zug&auml;ngliche<br>Austellung im Freien des<br>Kunstvereins Kapelle Weitendorf<br>Entfernung: 1,5km'),
						new Array('eisi', new GLatLng(53.90539686592898, 11.366654634475708), '<u>Eiscaf&eacute; Proseken</u><br>Eisdiele und Bistro<br>morgens frische Brötchen<br>Entfernung: 100m'),
						new Array('spopla', new GLatLng(53.90477744502994, 11.367512941360474), 'Sportplatz Proseken<br>Entfernung: 200m'),
						new Array('kark', new GLatLng(53.904034759905024, 11.3693368434906), '<u>Dorfkirche zu Proseken</u><br>die gotische Backsteinkirche<br>aus dem beginnenden 13. Jh.<br>ist von weither sichtbar.<br>Entfernung: 500m'),
						new Array('stoerti', new GLatLng(53.90557068136766, 11.36959969997406), '<u>Gasthof &quot;Klaus St&ouml;rtebeker&quot;</u><br>regionale K&uuml;che<br>Entfernung: 500m'),
						new Array('grill', new GLatLng(53.905564360818914, 11.370313167572021), '<u>Proseken Grill</u><br>Pizza, Pasta, Salate, D&ouml;ner<br>mit Lieferservice<br>Entfernung: 550m')
					);
		map.setCenter(marker[7][1], 17, G_SATELLITE_MAP);
		for(var i=0; i<marker.length; i++) {
			marker[i][4] = new GMarker(marker[i][1]);
			marker[i][4].text = marker[i][2];
			map.addOverlay(marker[i][4]);
		}
		marker[0][4].setImage('images/fewo_marker.gif');
		GEvent.addListener(map, "click", function(overlay){
			overlay.openInfoWindowHtml(overlay.text);
		});
		marker[0][4].openInfoWindowHtml("<u>Unsere Ferienwohnung</u><br>Bitte beachten Sie die<br>Informationen in der grauen<br>Box rechts.");
	}
}

function flug(ort, zoom, akt) {
	if(marker[ort][3])
		var pos = marker[ort][3];
	else
		var pos = marker[ort][1];
	map.setZoom(zoom);
	map.panTo(pos);
	for(var i=0; i<marker.length-5; i++) {
		document.getElementById(marker[i][0]).style.display = "inline";
	}
	akt.style.display = "none";
	window.setTimeout("marker[" + ort + "][4].openInfoWindowHtml('" + marker[ort][2] + "');", 1000);
}

