function initialize() {
    if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map-canvas"));
        map.setCenter(new GLatLng(50.057147, 14.433136), 15);
        
        var myPointer = new GIcon(); 
        myPointer.image = mapImagePoint;
        myPointer.iconSize = new GSize(24, 23);
        myPointer.iconAnchor = new GPoint(12, 12);
        myPointer.infoWindowAnchor = new GPoint(12, 12);
        
        var point = new GMarker(map.getCenter(), {icon:myPointer});
        map.addOverlay(point);
        
        point.bindInfoWindowHtml('<p style="font-family:Arial, sans-serif;"><strong>'+ mapCompany + '</strong><br />'+ mapStreet +'<br />'+ mapCity +'<br /><br /><a href="/'+ _lang._itself +'/contact/which-way-to-us/">'+ _lang.whichWayToUs +'</a></p>');
        point.setImage(mapImagePoint);
        
        map.setUIToDefault();
    }
}