    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map2"));
        map.setCenter(new GLatLng(50.945098,4.584968), 13);
		map.addControl(new GLargeMapControl());
		
		//custom icon
		var theIcon = new GIcon();
		/*theIcon.image = "http://www.invenso.com/images/invenso/other/map-logoconvenso.png";
		theIcon.shadow = "http://www.invenso.com/images/invenso/other/map-shadow.png";
		theIcon.iconSize = new GSize(111, 88);
		theIcon.shadowSize = new GSize(111, 88);
		theIcon.iconAnchor = new GPoint(42, 82);
		theIcon.infoWindowAnchor = new GPoint(84, 56);
		theIcon.infoShadowAnchor = new GPoint(0, 0);		*/
	
	
		//add marker
		var point = new GPoint(4.584968,50.945098);
		var marker = new GMarker(point);
		map.addOverlay(marker);
		
		GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml("<b>Career-Builders</b><br/>Aarschotsebaan 89 b7<br/>BE-1910 Kampenhout");
		});
		
		}
    }


	window.onload=function(){
		load();
	}
	window.onunload=function(){
		GUnload();
	}
	
	//]]>