function initialize() {
	var latlng = new google.maps.LatLng(52.11088,8.67874);
	var myOptions = {
	  zoom: 15,
	  center: latlng,
	  disableDefaultUI: true,
	  navigationControl: true,
	  navigationControlOptions: {
			style: google.maps.NavigationControlStyle.SMALL
		},
	  mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("map"), myOptions);
	var marker = new google.maps.Marker({
	  position: latlng, 
	  map: map, 
	  title:"Motorradfahrschule"
	});
	
	google.maps.event.addListener(marker, 'click', function() {
    window.location.replace('/anfahrt');
  });
}

