$(document).ready(function(){
	if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
		map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(52.088932, 5.115405), 6);		
		$(punten).each( function() {
			GEvent.addListener( $(this).marker, "click", function() { marker.openInfoWindowHtml(html); });
			map.addOverlay($(this).marker);
 	    });			
 	}
});
