$(document).ready(function () {   

	if (GBrowserIsCompatible()) {
		var point = new GLatLng(53.06575, 8.83750)
		var map = new GMap2(document.getElementById("gmap"));
		map.setCenter(point, 15);
		
		var weserstadionIcon = new GIcon();
		weserstadionIcon.image = "http://www.weserstadion.de/fileadmin/templates/images/marker-2.png";
		weserstadionIcon.shadow = "http://www.weserstadion.de/fileadmin/templates/images/markerShadow.png";
		weserstadionIcon.iconSize = new GSize(70, 40);
		weserstadionIcon.shadowSize = new GSize(90, 40);
		weserstadionIcon.iconAnchor = new GPoint(34, 38);
				
		markerOptions = { icon:weserstadionIcon };
		
		var marker = new GMarker(point, markerOptions);
		
		map.addOverlay(marker);
		
		var mapControl = new GMapTypeControl();
		map.addControl(mapControl);
		map.addControl(new GLargeMapControl());
		map.addControl(new GOverviewMapControl());
	}

  
  
});