function googlemaps_init() {
        // Initialize the map 
        var map = new google.maps.Map2(document.getElementById("googlemaps_internat"));
        
        // prepare the icons
        /*
        var icons = [[],[],[]];
        for(var i=0; i < regionColors.length; i++) {
            // Default icons
            icons[0][i] = new google.maps.Icon(G_DEFAULT_ICON);
            // Location Type Icons
            var locationIcon = new google.maps.Icon(G_DEFAULT_ICON);
            locationIcon.image = iconPath + regionColors[i] + '_MarkerS.png';
            locationIcon.shadow = iconPath + 'shadow-MarkerS.png';            
            locationIcon.iconSize = new google.maps.Size(22, 20);
            locationIcon.shadowSize = new google.maps.Size(33, 20);
            icons[1][i] = locationIcon;
            // Facility Type Icons
            var facilityIcon = new google.maps.Icon(G_DEFAULT_ICON);
            facilityIcon.image = iconPath + regionColors[i] + '_MarkerE.png';
            facilityIcon.shadow = iconPath + 'shadow-MarkerE.png';
            facilityIcon.iconSize = new google.maps.Size(22, 20);
            facilityIcon.shadowSize = new google.maps.Size(33, 20);
            icons[2][i] = facilityIcon; 
        }
        */
        
        // Center the map
        map.setCenter(new google.maps.LatLng(51.12930,8.26520), 15);
        map.setUIToDefault();
        
        
        // Render the marker
        
        marker = new google.maps.Marker(
            new google.maps.LatLng(51.12930,8.26520), 
            {
                title: 'Internat Bad Fredeburg', 
                 
            }
        );
        marker.bindInfoWindow(document.getElementById("internatID"));
        map.addOverlay(marker);
        GEvent.trigger(marker,"click");
    }
    google.setOnLoadCallback(googlemaps_init);

