
    $(document).ready(function() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(51.22705, 4.40569), 13);
        map.setUIToDefault();
        // Create our "tiny" marker icon
        var blueIcon = new GIcon(G_DEFAULT_ICON);
        blueIcon.image = "./themes/site_themes/pixelclub/img/map_marker.png";
	// Set up our GMarkerOptions object
	markerOptions = {icon:blueIcon};
	var latlng = new GLatLng(51.22705, 4.40569);
	map.addOverlay(new GMarker(latlng, markerOptions));

      }
    });


