window.addEvent('domready', function(){
	if($('googlemap')){
		var myMap = new GoogleMap(
			$('googlemap'),
			{
				mapType: G_HYBRID_MAP, // G_NORMAL_MAP, G_SATELLITE_MAP, G_HYBRID_MAP
				mapZoom: 12,
				markers:
					[
						{
							locationName: 'Arbeitskreis Fantasy<br />der CAU Kiel',
							address: 'Wilhelm-Seelig-Platz 4<br />24118 Kiel',
							geoCoordinates: {lat: 54.339682, long: 10.12488},
							//pictureUrl: '../shared/nps/googlemaps/logo.gif',
							iconImage: '../shared/nps/googlemaps/marker.png',
							//iconShadow: '../shared/nps/googlemaps/marker-shadow.png',
							iconSize: new GSize(30, 46),
							iconShadowSize: new GSize(66, 46),
							iconAnchor: new GPoint(15, 46)
						}
					]
			}
		);
	}
});