function initialize() {
	var map = new google.maps.Map(document.getElementById("map_canvas"), {
		zoom: 12,
		center: new google.maps.LatLng(53.5963, 10.0083),
		mapTypeId: google.maps.MapTypeId.ROADMAP
	});
	
	var marker = new google.maps.Marker({
		position: new google.maps.LatLng(53.5687, 10.0170),
		map: map,
	});
	
	var html = "";
	html += "<b>Uhlenhorster Weg 7-11<br>";
	html += "22085 Hamburg</b><br>";
	html += "<a href='#geschaeftsstelle'>Geschäftsstelle der Hamburgischen Brücke</a><br>";
	html += "<a href='#mutter_vater_kind'>Vermittlungsstelle für Mutter/Vater-Kind-Kuren</a><br>";
	html += "<a href='#clearingstelle_stiftungen'>Clearingstelle Stiftungen</a><br>";
	html += "<a href='#bub'>Beratungs- und Begegnungszentrum Uhlenhorster Weg</a>";
	
	var infowindow = new google.maps.InfoWindow({
		content: html
	});
	
	google.maps.event.addListener(marker, 'click', function() {
		infowindow.open(map, marker);
	});
	
	
	var marker1 = new google.maps.Marker({
		position: new google.maps.LatLng(53.5519, 9.9411),
		map: map,
	});
	
	var html1 = "";
	html1 += "<b>Große Bergstraße 231<br>";
	html1 += "22767 Hamburg</b><br>";
	html1 += "<a href='#altona'>Sozialpsychiatrisches Beratungszentrum Altona</a>";
	
	var infowindow1 = new google.maps.InfoWindow({
		content: html1
	});
	
	google.maps.event.addListener(marker1, 'click', function() {
		infowindow1.open(map, marker1);
	});
	
	
	var marker2 = new google.maps.Marker({
		position: new google.maps.LatLng(53.6263, 10.0259),
		map: map,
	});
	
	var html2 = "";
	html2 += "<b>Ratsmühlendamm 11<br>";
	html2 += "22335 Hamburg</b><br>";
	html2 += "<a href='#pfl-fl'>Pflegedienst Fuhlsbüttel-Langenhorn</a>";
	
	var infowindow2 = new google.maps.InfoWindow({
		content: html2
	});
	
	google.maps.event.addListener(marker2, 'click', function() {
		infowindow2.open(map, marker2);
	});
	
	
	var marker3 = new google.maps.Marker({
		position: new google.maps.LatLng(53.5973, 10.0576),
		map: map,
	});
	
	var html3 = "";
	html3 += "<b>Hellbrookkamp 58<br>";
	html3 += "22177 Hamburg</b><br>";
	html3 += "<a href='#soz-wb'>Sozialstation Wandsbek-Barmbek</a><br>";
	html3 += "<a href='#beratung_aeltere'>Beratungsstelle für ältere Menschen und ihre Angehörigen</a>";
	
	var infowindow3 = new google.maps.InfoWindow({
		content: html3
	});
	
	google.maps.event.addListener(marker3, 'click', function() {
		infowindow3.open(map, marker3);
	});
	
	
	var marker4 = new google.maps.Marker({
		position: new google.maps.LatLng(53.5926, 9.9847),
		map: map,
	});
	
	var html4 = "";
	html4 += "<b>Martinistraße 29<br>";
	html4 += "20251 Hamburg</b><br>";
	html4 += "<a href='#soz-epp'>Sozialstation Eppendorf</a>";
	
	var infowindow4 = new google.maps.InfoWindow({
		content: html4
	});
	
	google.maps.event.addListener(marker4, 'click', function() {
		infowindow4.open(map, marker4);
	});
	
	
	var marker5 = new google.maps.Marker({
		position: new google.maps.LatLng(53.5919, 9.9829),
		map: map,
	});
	
	var html5 = "";
	html5 += "<b>Martinistraße 33<br>";
	html5 += "20251 Hamburg</b><br>";
	html5 += "<a href='#martinistrasse'>Begegnungsstätte Martinistraße</a>";
	
	var infowindow5 = new google.maps.InfoWindow({
		content: html5
	});
	
	google.maps.event.addListener(marker5, 'click', function() {
		infowindow5.open(map, marker5);
	});
}
