function load() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
	var point = new GLatLng( 50.75498051734926, 5.049792746987182);
    map.setCenter(new GLatLng(50.75498051734926, 5.049792746987182), 13);
    map.addControl(new GLargeMapControl3D());
    map.addControl(new GMapTypeControl());

    // Create a base icon for all of our markers that specifies the
    // shadow, icon dimensions, etc.
    var baseIcon = new GIcon(G_DEFAULT_ICON);
    baseIcon.image = "images/kaartlogo.png";
    /*baseIcon.shadow = "http://www.tempus-arti.org/images/stories/gMaps/kaartlogo1.png";*/
    baseIcon.iconSize = new GSize(32, 32);
    baseIcon.shadowSize = new GSize(37, 34);
    baseIcon.iconAnchor = new GPoint(9, 34);
    baseIcon.infoWindowAnchor = new GPoint(9, 2);


	/*var infoTabs = [
  		new GInfoWindowTab('Tab #1', '<span style="color:#6d7300;">Tempus Arti Gallery</span><br /><div style="padding:5px;border:1px solid #6d7300; background-image:url(images/stripes.gif);text-align:center;"><img src="http://grasta.no-ip.org/testsite/images/TempusGallerijKlein.jpg" alt="Tempus Arti" /></div>'),
  		*//*new GInfoWindowTab('Tab #2', 'This is tab #2 content')*/
	/*];*/

      
  	var marker = new GMarker(point, baseIcon);

      GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml('<span style="color:#6d7300;">Tempus Arti Gallery</span><br /><div style="clear:both;padding:5px;border:1px solid #6d7300; background-image:url(images/stripes.gif);text-align:center;"><img src="http://www.tempus-arti.org/images/TempusGallerijKlein.jpg" alt="Tempus Arti" /></div><p style="clear:both;>&nbsp;</p>',{maxTitle:'<span id="bballontitel">Tempus Arti Gallery</span>',maxContent:'<div id="bigballoncontainer"><div id="bballonlinker"><h4>Tempus Arti Gallery</h4><img src="images/TempusGallerijKlein.jpg" alt="Tempus Arti" class="ballonfoto" /></div><div id="bballonrechter"><p class="grijstekst" id="bballonrechtstekst">Sint-Aldegondisstraat 28<br />3400 Landen (Overwinden)<br />België</p><p class="grijstekst"><strong>Startpoint</strong> Tempus Arti</p></div><div id="bballononder"><br /><img src="images/locaties/loc01/thumbs/loc01_07.jpg" alt="Tempus Arti" class="ballonfoto" /> <img src="images/locaties/loc01/thumbs/loc01_09.jpg" alt="Tempus Arti" class="ballonfoto" /> <img src="images/locaties/loc01/thumbs/loc01_08.jpg" alt="Tempus Arti" class="ballonfoto" /></div></div>'});
      });

      map.addOverlay(marker);
}
}