function load() {
				  if (GBrowserIsCompatible()) 
				  {
					  var map = new GMap2(document.getElementById("map"));
					  map.addControl(new GSmallMapControl());
					  map.setCenter(new GLatLng(50.708525693689275, 4.068331718444824), 15);
							  
					  var baseIcon = new GIcon();
						baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
						baseIcon.iconSize = new GSize(20, 34);
						baseIcon.shadowSize = new GSize(37, 34);
						baseIcon.iconAnchor = new GPoint(9, 34);
						baseIcon.infoWindowAnchor = new GPoint(9, 2);
						baseIcon.infoShadowAnchor = new GPoint(18, 25);
					
			   
						function createMarker(point) {
							  // Create a lettered icon for this point using our icon class
							  var icon = new GIcon(baseIcon);
							  icon.image = "http://www.gowell.be/GoWellWp/wp-content/themes/Fitness2/images/marker.png";
							  var marker = new GMarker(point, icon);
							  
								map.addControl(new GMapTypeControl());
								map.setCenter(point, 14);
								map.addOverlay(marker);
							
								marker.openInfoWindowHtml("<h2>Go Well</h2>Assesteenweg 40A<br>1540 Herne (Kokejane)<br/><br />0476 42 09 33<br/><br /><a href=\"mailto:info@gowell.be\">info@gowell.be</a>");
							
							  return marker;
							}
				  var point = new GLatLng(50.706176,4.065428);
				map.addOverlay(createMarker(point));
					map.setZoom(13)
			  }
			}